XmlDataDocument.CreateNavigator(XmlNode) Method

Definition

Creates a new XPathNavigator object for navigating this document. The XPathNavigator is positioned on the node specified in the node parameter.

protected:
 override System::Xml::XPath::XPathNavigator ^ CreateNavigator(System::Xml::XmlNode ^ node);
protected override System.Xml.XPath.XPathNavigator? CreateNavigator (System.Xml.XmlNode node);
protected override System.Xml.XPath.XPathNavigator CreateNavigator (System.Xml.XmlNode node);
override this.CreateNavigator : System.Xml.XmlNode -> System.Xml.XPath.XPathNavigator
Protected Overrides Function CreateNavigator (node As XmlNode) As XPathNavigator

Parameters

node
XmlNode

The XmlNode you want the navigator initially positioned on.

Returns

An XPathNavigator used to navigate the document.

Examples

To see an XSLT transformation using XmlDataDocument and an XPathNavigator, see the XslTransform.Transform method.

Remarks

The XPathNavigator provides read-only, random access to data. Because it is optimized for XSLT transformations, it provides performance benefits when used as an input mechanism to the Transform method.

Applies to

See also