Metode System::Xml::XPath::XPathNavigator::MoveToNext

XPathNavigator::MoveToNext() method

Saat dioverride dalam kelas turunan, memindahkan XPathNavigator ke node saudara berikutnya dari node saat ini.

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.

Lihat Juga

XPathNavigator::MoveToNext(String, String) method

Memindahkan XPathNavigator ke node saudara berikutnya dengan nama lokal dan URI namespace yang ditentukan.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
ParameterTipeDeskripsi
localNameStringNama lokal dari node saudara berikutnya yang akan dipindahkan.
namespaceURIStringURI namespace dari node saudara berikutnya yang akan dipindahkan.

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.

Lihat Juga

XPathNavigator::MoveToNext(XPathNodeType) method

Memindahkan XPathNavigator ke node saudara berikutnya dari node saat ini yang cocok dengan XPathNodeType yang ditentukan.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
ParameterTipeDeskripsi
typeXPathNodeTypeXPathNodeType dari node saudara yang akan dipindahkan.

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.

Lihat Juga