Overload | Description |
---|---|
GetLastDescendant(NSchema) | Gets the last descendant node of the given schema. This method visits descendants in Depth-First Post-Order. Children are enumerated in reverse order (from last to first). |
GetLastDescendant<TNode>() | Gets the first descendant node of the given type. This method visits descendants in Depth-First Pre-Order. Children are enumerated in forward order (from first to last). |
GetLastDescendant(INFilter<NNode>) | Gets the last descendant node, which satisfies the specified filter. This method visits descendants in Depth-First Post-Order. Children are enumerated in reverse order (from last to first). |