XmlDocumentXPathExtensions.CreateNavigator 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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 導覽器的文件。
傳回
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
導覽器一開始定位所在的節點。
傳回
用來導覽節點的 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
導覽器一開始定位所在的節點。
傳回
XPath 導覽器物件。