System::Xml::XPath::XPathNavigator::MoveToFollowing-Methode

XPathNavigator::MoveToFollowing(String, String) method

Verschiebt den XPathNavigator zum Element mit dem angegebenen lokalen Namen und Namespace-URI in Dokumentreihenfolge.

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localName, String namespaceURI)
ParameterTypBeschreibung
localNameStringDer lokale Name des Elements.
namespaceURIStringDie Namespace-URI des Elements.

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

Siehe auch

XPathNavigator::MoveToFollowing(String, String, SharedPtr<XPathNavigator>) method

Verschiebt den XPathNavigator zum Element mit dem angegebenen lokalen Namen und Namespace-URI, bis zur angegebenen Grenze, in Dokumentreihenfolge.

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localName, String namespaceURI, SharedPtr<XPathNavigator> end)
ParameterTypBeschreibung
localNameStringDer lokale Name des Elements.
namespaceURIStringDie Namespace-URI des Elements.
endSharedPtr<XPathNavigator>Das XPathNavigator-Objekt, das an der Elementgrenze positioniert ist, die der aktuelle XPathNavigator beim Suchen des folgenden Elements nicht überschreiten wird.

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

Siehe auch

XPathNavigator::MoveToFollowing(XPathNodeType) method

Verschiebt den XPathNavigator zum folgenden Element des angegebenen XPathNodeType in Dokumentreihenfolge.

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type)
ParameterTypBeschreibung
typeXPathNodeTypeDer XPathNodeType des Elements. Der XPathNodeType kann nicht XPathNodeType::Attribute oder XPathNodeType::Namespace sein.

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

Siehe auch

XPathNavigator::MoveToFollowing(XPathNodeType, SharedPtr<XPathNavigator>) method

Verschiebt den XPathNavigator zum folgenden Element des angegebenen XPathNodeType, bis zur angegebenen Grenze, in Dokumentreihenfolge.

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type, SharedPtr<XPathNavigator> end)
ParameterTypBeschreibung
typeXPathNodeTypeDer XPathNodeType des Elements. Der XPathNodeType kann nicht XPathNodeType::Attribute oder XPathNodeType::Namespace sein.
endSharedPtr<XPathNavigator>Das XPathNavigator-Objekt, das an der Elementgrenze positioniert ist, die der aktuelle XPathNavigator beim Suchen des folgenden Elements nicht überschreiten wird.

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

Siehe auch