XmlDocumentFragment.NodeValue Property

Definition

Gets or sets the text associated with the node.

public:
 property Platform::Object ^ NodeValue { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable NodeValue();

void NodeValue(IInspectable value);
public object NodeValue { get; set; }
var object = xmlDocumentFragment.nodeValue;
xmlDocumentFragment.nodeValue = object;
Public Property NodeValue As Object

Property Value

Object

Platform::Object

IInspectable

The text associated with the node.

Implements

Remarks

This value depends on the NodeType property. The following table describes this dependency.

NodeTypeNodeValue
ElementNull
AttributeValue of attribute
TextContent of the text node
CDATASectionContent of the CDATA Section
EntityReferenceNULL
EntityNULL
ProcessingInstructionEntire content excluding the target
CommentContent of the comment
DocumentNULL
DocumentTypeNULL
DocumentFragmentNULL
NotationNULL

Applies to