XText.NodeType 屬性

定義

取得此節點的節點類型。

public:
 virtual property System::Xml::XmlNodeType NodeType { System::Xml::XmlNodeType get(); };
public override System.Xml.XmlNodeType NodeType { get; }
member this.NodeType : System.Xml.XmlNodeType
Public Overrides ReadOnly Property NodeType As XmlNodeType

屬性值

XmlNodeType

節點類型。 對於 XText 物件,此值為 Text

範例

下列範例會建立包含許多節點類型的 XML 樹狀結構。 然後逐一查看樹狀結構,輸出每個節點的節點類型。

請注意, Child2 包含 XText 從字串內容隱含轉換的節點。

// Note that XNode uses XmlNodeType, which is in the System.Xml namespace.  
XDocument xmlTree = new XDocument(  
    new XComment("a comment"),  
    new XProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" href=\"hello.xsl\""),  
    new XElement("Root",  
        new XAttribute("Att", "attContent"),  
        new XElement("Child1",  
            new XCData("CDATA content")  
        ),  
        new XElement("Child2", "Text content")  
    )  
);  

foreach (XNode node in xmlTree.DescendantNodes())  
{  
    Console.WriteLine(node.NodeType);  
    if (node.NodeType == XmlNodeType.Element)  
    {  
        foreach (XAttribute att in ((XElement)node).Attributes())  
            Console.WriteLine(att.NodeType);  
    }  
}  
' Note that XNode uses XmlNodeType, which is in the System.Xml namespace.  
Dim xmlTree As XDocument = _  
    <?xml version='1.0'?>  
    <!-- a comment -->  
    <?xml-stylesheet type='text/xsl' href='hello.xsl'?>  
    <Root Att="attContent">  
        <Child1>  
            <![CDATA[CDATA content]

備註

因為衍生自 XObject 的所有類別都包含 NodeType 屬性,所以您可以撰寫程式碼,以在 的具象子類別 XObject 集合上運作。 然後,您的程式碼可以測試集合中每個節點的節點類型。

適用於

另請參閱