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

节点类型。 对于 XComment 对象,此值为 Comment

示例

以下示例创建注释节点并打印其节点类型。

XComment com = new XComment("This is a comment");  
XNode node = com;  
Console.WriteLine(node.NodeType);  
Dim com As XComment = New XComment("This is a comment")  
Dim node As XNode = com  
Console.WriteLine(node.NodeType.ToString())  

该示例产生下面的输出:

Comment  

注解

由于派生自 XObject 包含属性 NodeType 的所有类,因此可以编写对具体子类 XObject集合进行操作的代码。 然后,代码可以测试集合中每个节点的节点类型。

适用于

另请参阅