XmlNodeReader.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Item[Int32] |
获取具有指定索引的属性的值。 |
Item[String] |
当在派生类中被重写时,获取具有指定名称的属性的值。 |
Item[String, String] |
获取具有指定本地名称和命名空间 URI 的属性的值。 |
Item[Int32]
获取具有指定索引的属性的值。
public:
virtual property System::String ^ default[int] { System::String ^ get(int i); };
public override string this[int i] { get; }
member this.Item(int) : string
Default Public Overrides ReadOnly Property Item(i As Integer) As String
参数
- i
- Int32
属性的索引。
属性值
指定的属性的值。
例外
i
参数小于 0 或大于等于 AttributeCount。
注解
注意
在 .NET Framework 2.0 中,建议的做法是使用 XmlReaderSettings 类和 Create 方法创建XmlReader实例。 这使你可以充分利用.NET Framework中引入的所有新功能。 有关详细信息,请参阅参考页中的 XmlReader “备注”部分。
此属性不会移动读取器。
另请参阅
适用于
Item[String]
当在派生类中被重写时,获取具有指定名称的属性的值。
public:
virtual property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ name); };
public override string this[string name] { get; }
member this.Item(string) : string
Default Public Overrides ReadOnly Property Item(name As String) As String
参数
- name
- String
属性值
适用于
Item[String, String]
获取具有指定本地名称和命名空间 URI 的属性的值。
public:
virtual property System::String ^ default[System::String ^, System::String ^] { System::String ^ get(System::String ^ name, System::String ^ namespaceURI); };
public override string this[string name, string namespaceURI] { get; }
member this.Item(string * string) : string
Default Public Overrides ReadOnly Property Item(name As String, namespaceURI As String) As String
参数
- name
- String
属性的本地名称。
- namespaceURI
- String
属性的命名空间 URI。
属性值
指定的属性的值。 如果未找到该属性,则返回 null
。
注解
注意
在 .NET Framework 2.0 中,建议的做法是使用 XmlReaderSettings 类和 Create 方法创建XmlReader实例。 这使你可以充分利用.NET Framework中引入的所有新功能。 有关详细信息,请参阅参考页中的 XmlReader “备注”部分。
此属性不会移动读取器。