XmlNode Properties
.NET Framework 4.5
The XmlNode type exposes the following members.
| Name | Description | |
|---|---|---|
|
Attributes | Gets an XmlAttributeCollection containing the attributes of this node. |
|
BaseURI | Gets the base URI of the current node. |
|
ChildNodes | Gets all the child nodes of the node. |
|
FirstChild | Gets the first child of the node. |
|
HasChildNodes | Gets a value indicating whether this node has any child nodes. |
|
InnerText | Gets or sets the concatenated values of the node and all its child nodes. |
|
InnerXml | Gets or sets the markup representing only the child nodes of this node. |
|
IsReadOnly | Gets a value indicating whether the node is read-only. |
|
Item[String] | Gets the first child element with the specified Name. |
|
Item[String, String] | Gets the first child element with the specified LocalName and NamespaceURI. |
|
LastChild | Gets the last child of the node. |
|
LocalName | Gets the local name of the node, when overridden in a derived class. |
|
Name | Gets the qualified name of the node, when overridden in a derived class. |
|
NamespaceURI | Gets the namespace URI of this node. |
|
NextSibling | Gets the node immediately following this node. |
|
NodeType | Gets the type of the current node, when overridden in a derived class. |
|
OuterXml | Gets the markup containing this node and all its child nodes. |
|
OwnerDocument | Gets the XmlDocument to which this node belongs. |
|
ParentNode | Gets the parent of this node (for nodes that can have parents). |
|
Prefix | Gets or sets the namespace prefix of this node. |
|
PreviousSibling | Gets the node immediately preceding this node. |
|
SchemaInfo | Gets the post schema validation infoset that has been assigned to this node as a result of schema validation. |
|
Value | Gets or sets the value of the node. |