DelegatingXmlDictionaryReader.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Item[Int32] |
获取具有指定索引的属性的值。 |
Item[String] |
获取具有指定的本地名称和命名空间 URI(在由来自换行读取器的 Name 属性返回时)。 |
Item[String, String] |
获取具有指定的本地名称和命名空间 URI(在由 LocalName 属性和来自换行读取器的 NamespaceURI 属性返回时)。 |
Item[Int32]
Item[String]
获取具有指定的本地名称和命名空间 URI(在由来自换行读取器的 Name 属性返回时)。
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
属性的限定名称。
属性值
指定的属性的值。 如果未找到该属性,则返回 null
。
适用于
Item[String, String]
获取具有指定的本地名称和命名空间 URI(在由 LocalName 属性和来自换行读取器的 NamespaceURI 属性返回时)。
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
。