XProcessingInstruction.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

ノード型。 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のコレクションを操作するコードを記述できます。 その後、コードでコレクション内の各ノードのノードの種類をテストできます。

適用対象

こちらもご覧ください