XmlTextReader.Item[] プロパティ

定義

オーバーロード

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

属性のインデックス。

プロパティ値

String

属性の値。

適用対象

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

属性の限定名。

プロパティ値

String

指定した属性の値。 属性が見つからない場合は、 null.

注釈

このプロパティはリーダーを移動しません。

リーダーがノード上にDocumentType配置されている場合、このメソッドを使用して PUBLIC リテラルや SYSTEM リテラルを取得できます。例: reader["PUBLIC"]

適用対象

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。

プロパティ値

String

指定した属性の値。 属性が見つからない場合は、 null.

適用対象