MoveNext() public method

Position this iterator to the next content or sibling node. Return IteratorResult.NoMoreNodes if there are no more content or sibling nodes. Return IteratorResult.NeedInputNode if the next input node needs to be fetched first. Return IteratorResult.HaveCurrent if the Current property is set to the next node in the iteration.
public MoveNext ( XPathNavigator input ) : IteratorResult
input System.Xml.XPath.XPathNavigator
return IteratorResult
Exemplo n.º 1
0
 public IteratorResult MoveNext(XPathNavigator navigator)
 {
     return(_wrapped.MoveNext(navigator, false));
 }