XmlDocumentXPathExtensions.CreateNavigator Método

Definición

Sobrecargas

CreateNavigator(XmlDocument)

Crea un objeto de navegador XPath para desplazarse por el documento especificado.

CreateNavigator(XmlNode)

Crea un navegador de XPath para desplazarse por el nodo especificado.

CreateNavigator(XmlDocument, XmlNode)

Crea un objeto de navegador de XPath para desplazarse por el documento especificado colocado en el nodo especificado.

CreateNavigator(XmlDocument)

Crea un objeto de navegador XPath para desplazarse por el documento especificado.

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

Parámetros

document
XmlDocument

Documento a partir del cual se crea el navegador XPath.

Devoluciones

XPathNavigator

Objeto de navegador XPath.

Se aplica a

CreateNavigator(XmlNode)

Crea un navegador de XPath para desplazarse por el nodo especificado.

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

Parámetros

node
XmlNode

Nodo en el que se coloca inicialmente el navegador.

Devoluciones

XPathNavigator

Objeto de navegador de XPath que se usa para desplazarse por el nodo. El navegador de XPath se coloca en el nodo desde el que se llama al método, no en la raíz del documento.

Se aplica a

CreateNavigator(XmlDocument, XmlNode)

Crea un objeto de navegador de XPath para desplazarse por el documento especificado colocado en el nodo especificado.

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

Parámetros

document
XmlDocument

Documento a partir del cual se crea el navegador XPath.

node
XmlNode

Nodo en el que se coloca inicialmente el navegador.

Devoluciones

XPathNavigator

Objeto de navegador XPath.

Se aplica a