Share via


DelegatingXmlDictionaryReader.Item[] 属性

定义

重载

Item[Int32]

获取具有指定索引的属性的值。

Item[String]

获取具有指定的本地名称和命名空间 URI(在由来自换行读取器的 Name 属性返回时)。

Item[String, String]

获取具有指定的本地名称和命名空间 URI(在由 LocalName 属性和来自换行读取器的 NamespaceURI 属性返回时)。

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

属性的索引。

属性值

指定索引处的特性值。

适用于

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

适用于