TreeWalker Class

TreeWalker class

A tree walker.

public class TreeWalker : Traversal

Properties

NameDescription
CurrentNode { get; set; }The Current node property
Filter { get; }Defines the interface for get Filter.
Root { get; }Defines the interface for get Root node.

Methods

NameDescription
Dispose()Defines the interface for dispose.
FirstChild()Defines the interface for get first child node.
LastChild()Defines the interface for get last child node.
NextNode()Defines the interface for get next node.
NextSibling()Defines the interface for get next sibling node.
ParentNode()Defines the interface for get parent node.
PreviousNode()Defines the interface for get previous node.
PreviousSibling()Defines the interface for get previous sibling node.

See Also