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जिस अगले सहोदर नोड पर जाना है, उसका स्थानीय नाम।
namespaceURIStringजिस अगले सहोदर नोड पर जाना है, उसका नेमस्पेस URI।

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.

संबंधित देखें