System::Xml::XPath::XPathNavigator::MoveToNext methode

XPathNavigator::MoveToNext() method

Wanneer overschreven in een afgeleide klasse, verplaatst de XPathNavigator naar het volgende siblingknooppunt van het huidige knooppunt.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext()=0

ReturnValue

true if the XPathNavigator is successful moving to the next sibling node; otherwise false if there are no more siblings or if the XPathNavigator is currently positioned on an attribute node. If false, the position of the XPathNavigator is unchanged.

Zie ook

XPathNavigator::MoveToNext(String, String) method

Verplaatst de XPathNavigator naar het volgende siblingknooppunt met de opgegeven lokale naam en namespace-URI.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
ParameterTypeBeschrijving
localNameStringDe lokale naam van het volgende siblingknooppunt waarnaar verplaatst moet worden.
namespaceURIStringDe namespace-URI van het volgende siblingknooppunt waarnaar verplaatst moet worden.

ReturnValue

true if the XPathNavigator is successful moving to the next sibling node; false if there are no more siblings, or if the XPathNavigator is currently positioned on an attribute node. If false, the position of the XPathNavigator is unchanged.

Zie ook

XPathNavigator::MoveToNext(XPathNodeType) method

Verplaatst de XPathNavigator naar het volgende siblingknooppunt van het huidige knooppunt dat overeenkomt met de opgegeven XPathNodeType.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
ParameterTypeBeschrijving
typeXPathNodeTypeDe XPathNodeType van het siblingknooppunt waarnaar verplaatst moet worden.

ReturnValue

true if the XPathNavigator is successful moving to the next sibling node; otherwise, false if there are no more siblings or if the XPathNavigator is currently positioned on an attribute node. If false, the position of the XPathNavigator is unchanged.

Zie ook