ReadElementString()
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()
Return Value
The text contained in the element that was read. An empty string if the element is empty.
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)
Arguments
Parameter | Type | Description |
---|---|---|
name | String | The name to check. |
Return Value
The text contained in the element that was read. An empty string if the element is empty.
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)
Arguments
Parameter | Type | Description |
---|---|---|
localname | String | The local name to check. |
ns | String | The namespace URI to check. |
Return Value
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.Slides