System::Xml::XmlNodeReader::get_Value method
Contents
[
Hide
]XmlNodeReader::get_Value method
Returns the text value of the current node.
String System::Xml::XmlNodeReader::get_Value() override
ReturnValue
The value returned depends on the XmlNodeReader::get_NodeType of the node.
Remarks
The following table lists node types that have a value to return. All other node types return String::Empty. | |
---|---|
Node Type | Value |
Attribute | The value of the attribute. |
CDATA | The content of the CDATA section. |
Comment | The content of the comment. |
DocumentType | The internal subset. |
ProcessingInstruction | The entire content, excluding the target. |
SignificantWhitespace | The white space between markup in a mixed content model. |
Text | The content of the text node. |
Whitespace | The white space between markup. |
XmlDeclaration | The content of the declaration. |
See Also
- Class String
- Class XmlNodeReader
- Namespace System::Xml
- Library Aspose.PUB for C++