XmlNode.Name 属性

定义

当在派生类中被重写时,获取节点的限定名称。

public:
 abstract property System::String ^ Name { System::String ^ get(); };
public abstract string Name { get; }
member this.Name : string
Public MustOverride ReadOnly Property Name As String

属性值

String

节点的限定名称。 返回的名称取决于节点的 NodeType

类型 名称
Attribute 属性的限定名称。
CDATA #cdata-section
评论 #comment
文档 #document
DocumentFragment #document-fragment
DocumentType 文档类型名称。
元素 元素的限定名。
实体 实体的名称。
EntityReference 引用的实体的名称。
表示法 表示法名称。
ProcessingInstruction 处理指令的目标。
文本 #text
空格 #whitespace
SignificantWhitespace #significant-whitespace
XmlDeclaration #xml-declaration

适用于