XObject.NodeType Özellik

Tanım

Bu XObjectiçin düğüm türünü alır.

public abstract System.Xml.XmlNodeType NodeType { get; }

Özellik Değeri

Bu XObjectdüğüm türü.

Örnekler

Aşağıdaki örnek, çeşitli düğümler için düğüm türünü almak için bu yöntemi kullanır.

// 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",  
            new XText("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);  
    }  
}  

Bu örnek aşağıdaki çıkışı oluşturur:

Comment  
ProcessingInstruction  
Element  
Attribute  
Element  
CDATA  
Element  
Text  

Açıklamalar

'den türetilen tüm sınıflar bir NodeType özellik içerdiğindenXObject, somut alt sınıfı XObjectkoleksiyonları üzerinde çalışan kod yazabilirsiniz. Kodunuz daha sonra koleksiyondaki her düğümün düğüm türünü test edebilir.

Şunlara uygulanır

Ürün Sürümler
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Ayrıca bkz.