XProcessingInstruction.NodeType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得此節點的節點類型。
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
屬性值
節點類型。 對於 XProcessingInstruction 物件,此值為 ProcessingInstruction。
範例
下列範例會建立處理指示,然後列印其節點類型。
XProcessingInstruction pi =
new XProcessingInstruction("xml-stylesheet", "type=\"text/xsl\" href=\"hello.xsl\"");
Console.WriteLine(pi.NodeType);
Dim pi As XProcessingInstruction = _
<?xml-stylesheet type="text/xsl" href="hello.xsl"?>
Console.WriteLine(pi.NodeType.ToString)
這個範例會產生下列輸出:
ProcessingInstruction
備註
因為衍生自 XObject 的所有類別都包含 NodeType 屬性,所以您可以撰寫程式碼,以在 的具象子類別 XObject 集合上運作。 然後,您的程式碼可以測試集合中每個節點的節點類型。