XPathNodeType Enumeration
.NET Framework 2.0
Defines the XPath node types that can be returned from the XPathNavigator class.
Namespace: System.Xml.XPath
Assembly: System.Xml (in system.xml.dll)
Assembly: System.Xml (in system.xml.dll)
| Member name | Description | |
|---|---|---|
| All | Any of the XPathNodeType node types. | |
| Attribute | An attribute, such as id='123'. | |
| Comment | A comment, such as <!-- my comment --> | |
| Element | An element, such as <element>. | |
| Namespace | A namespace, such as xmlns="namespace". | |
| ProcessingInstruction | A processing instruction, such as <?pi test?>. This does not include XML declarations, which are not visible to the XPathNavigator class. | |
| Root | The root node of the XML document or node tree. | |
| SignificantWhitespace | A node with white space characters and xml:space set to preserve. | |
| Text | The text content of a node. Equivalent to the Document Object Model (DOM) Text and CDATA node types. Contains at least one character. | |
| Whitespace | A node with only white space characters and no significant white space. White space characters are #x20, #x9, #xD, or #xA. |
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: