VisitorAction

VisitorAction enumeration

Allows the visitor to control the enumeration of nodes.

public enum VisitorAction

Values

NameValueDescription
Continue0The visitor requests the enumeration to continue.
SkipThisNode1The visitor requests to skip the current node and continue enumeration.
Stop2The visitor requests the enumeration of nodes to stop.

See Also