XDocument.NodeType Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan jenis node untuk simpul ini.
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
Nilai Properti
Jenis node. Untuk XDocument objek, nilai ini adalah Document.
Contoh
Contoh berikut menunjukkan penggunaan properti ini.
// 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)
Contoh ini mencetak output berikut:
Document
Keterangan
Karena semua kelas yang berasal dari XObject berisi NodeType properti , Anda dapat menulis kode yang beroperasi pada koleksi objek di mana jenis masing-masing adalah subkelas dari XObject. Kode Anda kemudian dapat menguji jenis node setiap objek dalam koleksi.