XmlNodeType 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定節點類型。
public enum class XmlNodeType
public enum XmlNodeType
type XmlNodeType =
Public Enum XmlNodeType
- 繼承
欄位
Attribute | 2 | 屬性 (例如 |
CDATA | 4 | CDATA 區段 (例如 |
Comment | 8 | 註解 (例如 |
Document | 9 | 文件物件 (作為文件樹狀結構的根) 可存取整個 XML 文件。 |
DocumentFragment | 11 | 文件片段。 |
DocumentType | 10 | 文件類型宣告,以下列標記指示 (例如 |
Element | 1 | 項目 (例如 |
EndElement | 15 | 結尾項目標記 (例如 |
EndEntity | 16 | 在 |
Entity | 6 | 實體宣告 (例如 |
EntityReference | 5 | 實體參考 (例如 |
None | 0 | 如果尚未呼叫 |
Notation | 12 | 文件類型宣告中的標記法 (例如 |
ProcessingInstruction | 7 | 處理指示 (例如 |
SignificantWhitespace | 14 | 混合內容模型中標記之間的空白字元,或 |
Text | 3 | 節點的文字內容。 節點 Text 不能有任何子節點。 它可以顯示為 、 DocumentFragment Element 和 EntityReference 節點的 Attribute 子節點。 |
Whitespace | 13 | 標記之間的空白字元。 |
XmlDeclaration | 17 | XML 宣告 (例如 節點 XmlDeclaration 必須是檔中的第一個節點。 它不能有子系。 它是節點的 Document 子系。 它可以有提供版本和編碼資訊的屬性。 |
備註
下表提供 XML 節點及其父節點和子節點的其他資訊。
欄位 | 描述 | 可以有子節點: | 可以是的子節點: |
---|---|---|---|
Attribute |
EntityReference , Text |
無。 它不會被視為 的 Element 子節點。 |
|
CDATA |
CDATA 區段是用來逸出會辨識為標記的文字區塊。 | 無。 | DocumentFragment 、EntityReference 和 Element |
Comment |
無。 | Document 、DocumentFragment 、EntityReference |
|
Document |
XmlDeclaration , Element (最多一個) 、、 ProcessingInstruction 、 Comment``DocumentType |
None | |
DocumentFragment |
將節點或子樹與檔建立關聯,而不會實際包含在檔中。 | Element 、ProcessingInstruction 、Comment 、Text 、CDATA 、EntityReference |
無。 |
DocumentType |
Notation , Entity |
None | |
Element |
Element 、Text 、Comment 、ProcessingInstruction 、CDATA 、EntityReference |
Document , DocumentFragment , EntityReference , Element |
|
EndElement |
當 XmlReader 取得至專案結尾時傳回。 | ||
EndEntity |
|||
Entity |
例如,代表展開實體的子節點 (, Text 以及 EntityReference 節點) |
DocumentType |
|
EntityReference |
Element 、ProcessingInstruction 、Comment 、Text 、CDATA 、EntityReference |
Attribute , DocumentFragment , Element , EntityReference |
|
None |
|||
Notation |
無 | DocumentType |
|
ProcessingInstruction |
無 | Document , DocumentFragment , Element , EntityReference |
|
SignificantWhitespace |
|||
Text |
無 | Attribute , DocumentFragment , Element , EntityReference |
|
Whitespace |
|||
XmlDeclaration |
必須是檔中的第一個節點。 它可以有提供版本和編碼資訊的屬性。 | None | Document |