System::Xml::XPath::XPathNavigator::MoveToNext-Methode

XPathNavigator::MoveToNext() method

Wenn sie in einer abgeleiteten Klasse überschrieben wird, bewegt sie den XPathNavigator zum nächsten Geschwisterknoten des aktuellen Knotens.

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.

Siehe auch

XPathNavigator::MoveToNext(String, String) method

Bewegt den XPathNavigator zum nächsten Geschwisterknoten mit dem angegebenen lokalen Namen und dem Namespace-URI.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
ParameterTypBeschreibung
localNameStringDer lokale Name des nächsten Geschwisterknotens, zu dem bewegt werden soll.
namespaceURIStringDer Namespace-URI des nächsten Geschwisterknotens, zu dem bewegt werden soll.

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.

Siehe auch

XPathNavigator::MoveToNext(XPathNodeType) method

Bewegt den XPathNavigator zum nächsten Geschwisterknoten des aktuellen Knotens, der dem angegebenen XPathNodeType entspricht.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
ParameterTypBeschreibung
typeXPathNodeTypeDer XPathNodeType des Geschwisterknotens, zu dem bewegt werden soll.

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.

Siehe auch