XmlDocumentXPathExtensions.CreateNavigator Metoda

Definice

Přetížení

CreateNavigator(XmlDocument)

Vytvoří nový objekt navigátoru XPath pro navigaci v zadaném dokumentu.

CreateNavigator(XmlNode)

Vytvoří navigátor XPath pro navigaci v zadaném uzlu.

CreateNavigator(XmlDocument, XmlNode)

Vytvoří objekt navigátoru XPath pro navigaci v zadaném dokumentu v zadaném uzlu.

CreateNavigator(XmlDocument)

Vytvoří nový objekt navigátoru XPath pro navigaci v zadaném dokumentu.

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

Parametry

document
XmlDocument

Dokument, ze kterého je vytvořen navigátor XPath.

Návraty

XPathNavigator

Objekt navigátoru XPath.

Platí pro

CreateNavigator(XmlNode)

Vytvoří navigátor XPath pro navigaci v zadaném uzlu.

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

Parametry

node
XmlNode

Uzel, na kterém je navigátor na začátku umístěný.

Návraty

XPathNavigator

Objekt navigátoru XPath používaný k navigaci v uzlu. Navigátor XPath je umístěný na uzlu, ze kterého je volána metoda , nikoli v kořenovém adresáři dokumentu.

Platí pro

CreateNavigator(XmlDocument, XmlNode)

Vytvoří objekt navigátoru XPath pro navigaci v zadaném dokumentu v zadaném uzlu.

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

Parametry

document
XmlDocument

Dokument, ze kterého je vytvořen navigátor XPath.

node
XmlNode

Uzel, na kterém je navigátor na začátku umístěný.

Návraty

XPathNavigator

Objekt navigátoru XPath.

Platí pro