XmlDocument.CreateNavigator Method

Definition

Creates a new XPathNavigator object for navigating this document.

Overloads

CreateNavigator()

Creates a new XPathNavigator object for navigating this document.

CreateNavigator(XmlNode)

Creates an XPathNavigator object for navigating this document positioned on the XmlNode specified.

CreateNavigator()

Creates a new XPathNavigator object for navigating this document.

public:
 override System::Xml::XPath::XPathNavigator ^ CreateNavigator();
public override System.Xml.XPath.XPathNavigator? CreateNavigator ();
public override System.Xml.XPath.XPathNavigator CreateNavigator ();
override this.CreateNavigator : unit -> System.Xml.XPath.XPathNavigator
Public Overrides Function CreateNavigator () As XPathNavigator

Returns

An XPathNavigator object.

Examples

See XmlNode.CreateNavigator for an example using this method.

Remarks

This method is a Microsoft extension to the Document Object Model (DOM).

Applies to

CreateNavigator(XmlNode)

Creates an XPathNavigator object for navigating this document positioned on the XmlNode specified.

protected public:
 virtual System::Xml::XPath::XPathNavigator ^ CreateNavigator(System::Xml::XmlNode ^ node);
protected internal virtual System.Xml.XPath.XPathNavigator? CreateNavigator (System.Xml.XmlNode node);
protected internal virtual System.Xml.XPath.XPathNavigator CreateNavigator (System.Xml.XmlNode node);
override this.CreateNavigator : System.Xml.XmlNode -> System.Xml.XPath.XPathNavigator
Protected Friend Overridable Function CreateNavigator (node As XmlNode) As XPathNavigator

Parameters

node
XmlNode

The XmlNode you want the navigator initially positioned on.

Returns

An XPathNavigator object.

Examples

See XmlNode.CreateNavigator for an example using this method.

Remarks

This method is a Microsoft extension to the Document Object Model (DOM).

Applies to