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