XmlDocumentXPathExtensions.CreateNavigator 方法

定义

重载

CreateNavigator(XmlDocument)

创建新的 XPath 导航器对象,以用于在指定文档中进行导航。

CreateNavigator(XmlNode)

创建 XPath 导航器,以用于在指定节点中进行导航。

CreateNavigator(XmlDocument, XmlNode)

创建 XPath 导航器对象,以用于在放置在指定节点上的指定文档中进行导航。

CreateNavigator(XmlDocument)

创建新的 XPath 导航器对象,以用于在指定文档中进行导航。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Xml::XPath::XPathNavigator ^ CreateNavigator(System::Xml::XmlDocument ^ document);
public static System.Xml.XPath.XPathNavigator CreateNavigator (this System.Xml.XmlDocument document);
static member CreateNavigator : System.Xml.XmlDocument -> System.Xml.XPath.XPathNavigator
<Extension()>
Public Function CreateNavigator (document As XmlDocument) As XPathNavigator

参数

document
XmlDocument

从中创建 XPath 导航器的文档。

返回

XPathNavigator

一个 XPath 导航器对象。

适用于

CreateNavigator(XmlNode)

创建 XPath 导航器,以用于在指定节点中进行导航。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Xml::XPath::XPathNavigator ^ CreateNavigator(System::Xml::XmlNode ^ node);
public static System.Xml.XPath.XPathNavigator CreateNavigator (this System.Xml.XmlNode node);
static member CreateNavigator : System.Xml.XmlNode -> System.Xml.XPath.XPathNavigator
<Extension()>
Public Function CreateNavigator (node As XmlNode) As XPathNavigator

参数

node
XmlNode

导航器最初定位在的节点。

返回

XPathNavigator

用于在节点中进行导航的 XPath 导航器对象。 XPath 导航器定位在调用方法的节点上,而不是在文档的根上。

适用于

CreateNavigator(XmlDocument, XmlNode)

创建 XPath 导航器对象,以用于在放置在指定节点上的指定文档中进行导航。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Xml::XPath::XPathNavigator ^ CreateNavigator(System::Xml::XmlDocument ^ document, System::Xml::XmlNode ^ node);
public static System.Xml.XPath.XPathNavigator CreateNavigator (this System.Xml.XmlDocument document, System.Xml.XmlNode node);
static member CreateNavigator : System.Xml.XmlDocument * System.Xml.XmlNode -> System.Xml.XPath.XPathNavigator
<Extension()>
Public Function CreateNavigator (document As XmlDocument, node As XmlNode) As XPathNavigator

参数

document
XmlDocument

从中创建 XPath 导航器的文档。

node
XmlNode

导航器最初定位在的节点。

返回

XPathNavigator

一个 XPath 导航器对象。

适用于