طريقة System::Xml::XPath::XPathNavigator::MoveToNext

XPathNavigator::MoveToNext() method

عند تجاوزها في فئة مشتقة، تنقل XPathNavigator إلى العقدة الشقيقة التالية للعقدة الحالية.

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.

انظر أيضًا

XPathNavigator::MoveToNext(String, String) method

تنقل XPathNavigator إلى العقدة الشقيقة التالية بالاسم المحلي وURI مساحة الاسم المحددين.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(String localName, String namespaceURI)
معاملنوعالوصف
localNameStringالاسم المحلي للعقدة الشقيقة التالية التي سيتم الانتقال إليها.
namespaceURIStringURI مساحة الاسم للعقدة الشقيقة التالية التي سيتم الانتقال إليها.

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.

انظر أيضًا

XPathNavigator::MoveToNext(XPathNodeType) method

تنقل XPathNavigator إلى العقدة الشقيقة التالية للعقدة الحالية التي تطابق XPathNodeType المحدد.

virtual bool System::Xml::XPath::XPathNavigator::MoveToNext(XPathNodeType type)
معاملنوعالوصف
typeXPathNodeTypeالـ XPathNodeType للعقدة الشقيقة التي سيتم الانتقال إليها.

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.

انظر أيضًا