System::Xml::XPath::XPathNavigator::MoveToNext méthode

XPathNavigator::MoveToNext() method

Lorsqu’il est remplacé dans une classe dérivée, déplace le XPathNavigator vers le nœud frère suivant du nœud actuel.

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.

Voir aussi

XPathNavigator::MoveToNext(String, String) method

Déplace le XPathNavigator vers le nœud frère suivant dont le nom local et l’URI d’espace de noms sont spécifiés.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
ParamètreTypeDescription
localNameStringLe nom local du nœud frère suivant vers lequel se déplacer.
namespaceURIStringL’URI d’espace de noms du nœud frère suivant vers lequel se déplacer.

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.

Voir aussi

XPathNavigator::MoveToNext(XPathNodeType) method

Déplace le XPathNavigator vers le nœud frère suivant du nœud actuel qui correspond au XPathNodeType spécifié.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
ParamètreTypeDescription
typeXPathNodeTypeLe XPathNodeType du nœud frère vers lequel se déplacer.

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.

Voir aussi