XmlDocumentFragment.NodeName 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回屬性、文件類型、元素、實體或標記法節點的完整名稱。 傳回所有其他節點類型的固定字串。
public:
property Platform::String ^ NodeName { Platform::String ^ get(); };
winrt::hstring NodeName();
public string NodeName { get; }
var string = xmlDocumentFragment.nodeName;
Public ReadOnly Property NodeName As String
屬性值
限定節點名稱,視節點類型而有所不同。
實作
備註
此值取決於 NodeType 屬性。 下表描述此相依性。
NodeType | NodeName |
---|---|
元素 | tagName |
屬性 | 屬性的名稱 |
Text | #text |
CDATASection | #cdata-section |
EntityReference | 參考的機構名稱 |
實體 | 機構名稱 |
ProcessingInstruction | 目標 |
註解 | #comment |
文件 | #document |
DocumentType | 檔案類型名稱 |
DocumentFragment | #document-fragment |
表示法 | 標記法名稱 |