System::Xml::XmlReader::ReadElementString method
XmlReader::ReadElementString() method
Reads a text-only element. However, it is recommended to use the XmlReader::ReadElementContentAsString method instead, because it provides a more straightforward way to handle this operation.
virtual String System::Xml::XmlReader::ReadElementString()
ReturnValue
The text contained in the element that was read. An empty string if the element is empty.
See Also
- Class String
- Class XmlReader
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlReader::ReadElementString(String, String) method
Checks that the XmlReader::get_LocalName and XmlReader::get_NamespaceURI values of the element found matches the given strings before reading a text-only element. However, it is recommended to use the XmlReader::ReadElementContentAsString method instead, because it provides a more straightforward way to handle this operation.
virtual String System::Xml::XmlReader::ReadElementString(String localname, String ns)
Parameter | Type | Description |
---|---|---|
localname | String | The local name to check. |
ns | String | The namespace URI to check. |
ReturnValue
The text contained in the element that was read. An empty string if the element is empty.
See Also
- Class String
- Class XmlReader
- Namespace System::Xml
- Library Aspose.TeX for C++
XmlReader::ReadElementString(String) method
Checks that the XmlReader::get_Name value of the element found matches the given string before reading a text-only element. However, it is recommended to use the XmlReader::ReadElementContentAsString method instead, because it provides a more straightforward way to handle this operation.
virtual String System::Xml::XmlReader::ReadElementString(String name)
Parameter | Type | Description |
---|---|---|
name | String | The name to check. |
ReturnValue
The text contained in the element that was read. An empty string if the element is empty.
See Also
- Class String
- Class XmlReader
- Namespace System::Xml
- Library Aspose.TeX for C++