XmlDataDocument.CreateNavigator(XmlNode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.