IntersectIterator.MoveNext(XPathNavigator) Method

Definition

Positions the iterator to the next node in the union.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 System::Xml::Xsl::Runtime::SetIteratorResult MoveNext(System::Xml::XPath::XPathNavigator ^ nestedNavigator);
public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext (System.Xml.XPath.XPathNavigator nestedNavigator);
member this.MoveNext : System.Xml.XPath.XPathNavigator -> System.Xml.Xsl.Runtime.SetIteratorResult
Public Function MoveNext (nestedNavigator As XPathNavigator) As SetIteratorResult

Parameters

nestedNavigator
XPathNavigator

The XPathNavigator object.

Returns

The SetIteratorResult.

Remarks

Returns NoMoreNodes if there are no more nodes.

Returns InitRightIterator if this function initializes the right nested iterator.

Returns NeedLeftNode if the next node needs to be fetched from the left-nested iterator.

Returns NeedRightNode if the next node needs to be fetched from the right-nested iterator.

Returns HaveCurrentNode if the iterator's Current property is set to the next node in the iteration.

Applies to