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。 然后,代码可以测试集合中每个节点的节点类型。

适用于

另请参阅