DelegatingXmlDictionaryReader.GetAttribute 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetAttribute(Int32) |
获取给定索引处的特性的值。 |
GetAttribute(String) |
获取具有给定名称的特性的值。 |
GetAttribute(String, String) |
获取具有给定名称和命名空间 Uri 的属性的值。 |
GetAttribute(Int32)
GetAttribute(String)
获取具有给定名称的特性的值。
public:
override System::String ^ GetAttribute(System::String ^ name);
public override string GetAttribute (string name);
override this.GetAttribute : string -> string
Public Overrides Function GetAttribute (name As String) As String
参数
- name
- String
属性的限定名称。
返回
属性的值。 如果未找到该属性,则返回 null。
注解
方法不会移动读取器位置。
适用于
GetAttribute(String, String)
获取具有给定名称和命名空间 Uri 的属性的值。
public:
override System::String ^ GetAttribute(System::String ^ name, System::String ^ namespaceURI);
public override string GetAttribute (string name, string namespaceURI);
override this.GetAttribute : string * string -> string
Public Overrides Function GetAttribute (name As String, namespaceURI As String) As String
参数
- name
- String
属性的本地名称。
- namespaceURI
- String
特性的命名空间。
返回
属性的值。 如果未找到该属性,则返回 null。
注解
方法不会移动读取器。