System::Xml::XPath::XPathNavigator::MoveToFollowing method

XPathNavigator::MoveToFollowing(String, String) method

文書順に指定されたローカル名と名前空間 URI を持つ要素へ XPathNavigator を移動します。

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localName, String namespaceURI)
パラメーター説明
localNameString要素のローカル名です。
namespaceURIString要素の名前空間 URI。

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

参照

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

文書順で指定されたローカル名と名前空間 URI を持つ要素へ、指定された境界まで XPathNavigator を移動します。

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(String localName, String namespaceURI, SharedPtr<XPathNavigator> end)
パラメーター説明
localNameString要素のローカル名です。
namespaceURIString要素の名前空間 URI。
endSharedPtr<XPathNavigator>次の要素を検索する際に現在の XPathNavigator が越えないように、要素の境界上に位置する XPathNavigator オブジェクト。

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

参照

XPathNavigator::MoveToFollowing(XPathNodeType) method

文書順で指定された XPathNodeType の次の要素へ XPathNavigator を移動します。

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type)
パラメーター説明
typeXPathNodeTypeThe 要素の XPathNodeTypeXPathNodeTypeXPathNodeType::Attribute または XPathNodeType::Namespace にすることはできません。

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

参照

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

指定された XPathNodeType の次の要素へ、指定された境界まで、文書順で XPathNavigator を移動します。

virtual bool System::Xml::XPath::XPathNavigator::MoveToFollowing(XPathNodeType type, SharedPtr<XPathNavigator> end)
パラメーター説明
typeXPathNodeTypeThe 要素の XPathNodeTypeXPathNodeTypeXPathNodeType::Attribute または XPathNodeType::Namespace にすることはできません。
endSharedPtr<XPathNavigator>次の要素を検索する際に現在の XPathNavigator が越えないように、要素の境界上に位置する XPathNavigator オブジェクト。

ReturnValue

true if the XPathNavigator moved successfully; otherwise, false.

参照