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

XPathNavigator::MoveToNext() method

Cuando se sobrescribe en una clase derivada, mueve el XPathNavigator al nodo hermano siguiente del nodo actual.

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.

Ver también

XPathNavigator::MoveToNext(String, String) method

Mueve el XPathNavigator al nodo hermano siguiente con el nombre local y el URI del espacio de nombres especificados.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
ParámetroTipoDescripción
localNameStringEl nombre local del siguiente nodo hermano al que moverse.
namespaceURIStringEl URI del espacio de nombres del siguiente nodo hermano al que moverse.

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.

Ver también

XPathNavigator::MoveToNext(XPathNodeType) method

Mueve el XPathNavigator al siguiente nodo hermano del nodo actual que coincide con el XPathNodeType especificado.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
ParámetroTipoDescripción
typeXPathNodeTypeEl XPathNodeType del nodo hermano al que moverse.

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.

Ver también