次の方法で共有


DelegatingXmlDictionaryReader.Item[] プロパティ

定義

オーバーロード

Item[Int32]

指定したインデックスの属性の値を取得します。

Item[String]

指定された名前 (ラップされたリーダーの 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]

指定された名前 (ラップされたリーダーの 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 が返されます。

適用対象