संपादित करें

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


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

Name Value Description
Root 0

The root node of the XML document or node tree.

Element 1

An element, such as <element>.

Attribute 2

An attribute, such as id='123'.

Namespace 3

A namespace, such as xmlns="namespace".

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.

SignificantWhitespace 5

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

Whitespace 6

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

ProcessingInstruction 7

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

Comment 8

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

All 9

Any of the XPathNodeType node types.

Applies to