संपादित करें

इसके माध्यम से साझा किया गया


XPathNodeType Enum

Definition

Defines the XPath node types that can be returned from the XPathNavigator class.

public enum class XPathNodeType
public enum XPathNodeType
type XPathNodeType = 
Public Enum XPathNodeType
Inheritance
XPathNodeType

Fields

All 9

Any of the XPathNodeType node types.

Attribute 2

An attribute, such as id='123'.

Comment 8

A comment, such as <!-- my comment -->.

Element 1

An element, such as <element>.

Namespace 3

A namespace, such as xmlns="namespace".

ProcessingInstruction 7

A processing instruction, such as <?pi test?>. This does not include XML declarations, which are not visible to the XPathNavigator class.

Root 0

The root node of the XML document or node tree.

SignificantWhitespace 5

A node with white space characters and xml:space set to preserve.

Text 4

The text content of a node. Equivalent to the Document Object Model (DOM) Text and CDATA node types. Contains at least one character.

Whitespace 6

A node with only white space characters and no significant white space. White space characters are #x20, #x9, #xD, or #xA.

Applies to