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 탐색기 개체입니다.

적용 대상