Metodo System::Xml::XPath::XPathNavigator::MoveToNext

XPathNavigator::MoveToNext() method

Quando sovrascritto in una classe derivata, sposta il XPathNavigator al nodo fratello successivo del nodo corrente.

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.

Vedi anche

XPathNavigator::MoveToNext(String, String) method

Sposta il XPathNavigator al nodo fratello successivo con il nome locale e l’URI dello spazio dei nomi specificati.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
ParametroTipoDescrizione
localNameStringaIl nome locale del nodo fratello successivo a cui spostarsi.
namespaceURIStringaL’URI dello spazio dei nomi del nodo fratello successivo a cui spostarsi.

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.

Vedi anche

XPathNavigator::MoveToNext(XPathNodeType) method

Sposta il XPathNavigator al nodo fratello successivo del nodo corrente che corrisponde al XPathNodeType specificato.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
ParametroTipoDescrizione
typeXPathNodeTypeIl XPathNodeType del nodo fratello a cui spostarsi.

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.

Vedi anche