This documentation is archived and is not being maintained.
IXPathNavigable Interface
.NET Framework 1.1
Provides an accessor to the XPathNavigator.
For a list of all members of this type, see IXPathNavigable Members.
[Visual Basic] Public Interface IXPathNavigable [C#] public interface IXPathNavigable [C++] public __gc __interface IXPathNavigable [JScript] public interface IXPathNavigable
Classes that Implement IXPathNavigable
| Class | Description |
|---|---|
| XmlNode | Represents a single node in the XML document. |
| XPathDocument | Provides a fast, read-only cache for XML document processing using XSLT. |
Example
[Visual Basic, C#, C++] The following example creates an XPathNavigator object.
[Visual Basic] Dim doc As New XPathDocument("books.xml") Dim nav As XPathNavigator = doc.CreateNavigator() [C#] XPathDocument doc = new XPathDocument("books.xml"); XPathNavigator nav = doc.CreateNavigator(); [C++] XPathDocument* doc = new XPathDocument(S"books.xml"); XPathNavigator* nav = doc->CreateNavigator();
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Namespace: System.Xml.XPath
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Xml (in System.Xml.dll)
See Also
Show: