XDocument.NodeType Özellik

Tanım

Bu düğümün düğüm türünü alır.

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

Özellik Değeri

XmlNodeType

Düğüm türü. Nesneler için XDocument bu değer şeklindedir Document.

Örnekler

Aşağıdaki örnekte bu özelliğin kullanımı gösterilmektedir.

// Note that this property uses XmlNodeType, which is in the System.Xml namespace.  
XDocument xmlTree = new XDocument(  
    new XDeclaration("1.0", "utf-8", "yes"),  
    new XElement("Root", "content")  
);  
Console.WriteLine(xmlTree.NodeType);  
' Note that this property uses XmlNodeType, which is in the System.Xml namespace.  
Dim xmlTree As XDocument = _  
    <?xml version='1.0' encoding='utf-8' standalone='yes'?>  
        <Root>content</Root>  
Console.WriteLine("{0}", xmlTree.NodeType)  

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

Document  

Açıklamalar

'den türetilen tüm sınıflar bir NodeType özellik içerdiğindenXObject, her birinin türünün bir alt sınıfı XObjectolduğu nesne koleksiyonlarında çalışan kod yazabilirsiniz. Kodunuz daha sonra koleksiyondaki her nesnenin düğüm türünü test edebilir.

Şunlara uygulanır

Ayrıca bkz.