XmlNode.Name 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当在派生类中被重写时,获取节点的限定名称。
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
属性值
节点的限定名称。 返回的名称取决于节点的 NodeType:
类型 | 名称 |
---|---|
Attribute | 属性的限定名称。 |
CDATA | #cdata-section |
评论 | #comment |
文档 | #document |
DocumentFragment | #document-fragment |
DocumentType | 文档类型名称。 |
元素 | 元素的限定名。 |
实体 | 实体的名称。 |
EntityReference | 引用的实体的名称。 |
表示法 | 表示法名称。 |
ProcessingInstruction | 处理指令的目标。 |
文本 | #text |
空格 | #whitespace |
SignificantWhitespace | #significant-whitespace |
XmlDeclaration | #xml-declaration |