DelegatingXmlDictionaryReader.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
が返されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET