XmlDocument.CreateNavigator 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.
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()
- Source:
- XmlDocument.cs
- Source:
- XmlDocument.cs
- Source:
- XmlDocument.cs
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)
- Source:
- XmlDocument.cs
- Source:
- XmlDocument.cs
- Source:
- XmlDocument.cs
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
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).