XmlDocumentXPathExtensions.CreateNavigator Método

Definición

Sobrecargas

Nombre Description
CreateNavigator(XmlDocument)

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

CreateNavigator(XmlNode)

Crea un navegador XPath para navegar por el nodo especificado.

CreateNavigator(XmlDocument, XmlNode)

Crea un objeto de navegador XPath para navegar por el documento especificado situado en el nodo especificado.

CreateNavigator(XmlDocument)

Source:
XmlDocumentXPathExtensions.cs

Crea un nuevo objeto de navegador XPath para navegar 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 desde el que se crea el navegador XPath.

Devoluciones

Objeto de navegador XPath.

Se aplica a

CreateNavigator(XmlNode)

Source:
XmlDocumentXPathExtensions.cs

Crea un navegador XPath para navegar 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 donde se coloca inicialmente el navegador.

Devoluciones

Objeto de navegador XPath usado para navegar por el nodo. El navegador 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)

Source:
XmlDocumentXPathExtensions.cs

Crea un objeto de navegador XPath para navegar por el documento especificado situado 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 desde el que se crea el navegador XPath.

node
XmlNode

Nodo donde se coloca inicialmente el navegador.

Devoluciones

Objeto de navegador XPath.

Se aplica a