Name | Description | |
---|---|---|
![]() | m_Parent | The parent of this node. |
The following tables list the members exposed by NXmlNode.
Name | Description | |
---|---|---|
![]() | CaseSensitive | Gets whether this node is case sensitive. Always returns true for XML nodes. |
![]() | ChildrenCount | Gets the number of children of this node. |
![]() | DeclarationsCount | Gets the number of declarations of this node. |
![]() | Name | Gets the name of this node. |
![]() | NodeType | Gets the node type of this XML node. |
![]() | Parent | Gets the parent node of this node. |
Name | Description | |
---|---|---|
![]() | AddChild | Adds the given node as a child to this node. |
![]() | AddDeclaration | Adds the given declaration to this document's list of declarations. |
![]() | GetChildAt | Gets the child node at the specified index. |
![]() | GetChildNodesIterator | Gets an iterator that iterates through the child nodes of this node. Returns null if this node doesn't have child nodes. |
![]() | GetChildren | Gets all children of this node that have the given name. If no such children are found, an empty list is returned. |
![]() | GetDeclarationAt | Gets the declaration at the specified index. |
![]() | GetDeclarationsIterator | Gets an iterator that iterates through the declarations of this document. Returns null if this document doesn't have declarations. |
![]() | GetDescendants | Gets all descendants of this node that have the given name. If no such descendants are found, an empty list is returned. |
![]() | GetFirstAncestor | Overloaded. Returns the first ancestor of this node that has the given name or null if no such ancestor is found. |
![]() | GetFirstChild | Overloaded. Gets the first child of this XML node. |
![]() | GetFirstDescendant | Returns the first descendant of this node with the given name or null if no such descendant is found. |
![]() | GetLastChild | Gets the last child of this XML node. |
![]() | GetLastDescendant | Returns the last descendant of this node with the given name or null if no such descendant is found. |
![]() | GetNextSibling | Overloaded. Gets the next sibling of this node. Returns null if it is doesn't have a next sibling. |
![]() | GetPreviousSibling | Overloaded. Gets the previous sibling of this node. Returns null if it doesn't have a previous sibling. |
![]() | GetSelfOrFirstAncestor | Overloaded. Returns this node or its first ancestor that has a name equal to the given name. Returns null if such ancestor is not found. |
![]() | InsertChild | Inserts the given child node at the specified index. |
![]() | RemoveAllChildren | Removes all child nodes of this node. |
![]() | RemoveAllDeclarations | Removes all declaration nodes of this node. |
![]() | RemoveChild | Removes the given child from this node's children. |
![]() | RemoveChildAt | Removes the child node at the specified index. |
![]() | RemoveDeclaration | Removes the given declaration from this node's declarations. |
![]() | RemoveDeclarationAt | Removes the declaration at the given index. |
![]() | ToString | Returns the string representation of this node. |