Node Members |
Attributes | Gets a collection containing the attributes of this node. |
ChildNodes | Gets all the child nodes of the node. |
FirstChild | Gets the first child of the node. |
LastChild | Gets the last child of the node. |
NextSibling | Gets the node immediately following this node. |
NodeName | Gets the qualified name of the node. |
NodeType | Gets the type of the current node. |
NodeValue | Gets or sets the value of the node. |
OwnerDocument | Gets the document to which this node belongs. |
ParentNode | Gets the parent of this node. |
PreviousSibling | Gets the node immediately preceding this node. |
AppendChild | Adds the specified node to the end of the list of child nodes, of this node. |
CloneNode | Creates a duplicate of this node. |
HasChildNodes | Gets a value indicating whether this node has any child nodes. |
InsertBefore | Inserts the specified node immediately before the specified reference node. |
Normalize | Combines all adjacent text nodes in the full depth of the sub-tree underneath this node. |
RemoveChild | Removes specified child node. |
ReplaceChild | Replaces the child node oldChild with newChild node. |