DelegatingXmlDictionaryReader.GetAttribute メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetAttribute(Int32) |
指定したインデックス位置にある属性の値を取得します。 |
GetAttribute(String) |
指定した名前の属性の値を取得します。 |
GetAttribute(String, String) |
指定した名前と名前空間 URI に関連付けられた属性の値を取得します。 |
GetAttribute(Int32)
指定したインデックス位置にある属性の値を取得します。
public:
override System::String ^ GetAttribute(int i);
public override string GetAttribute (int i);
override this.GetAttribute : int -> string
Public Overrides Function GetAttribute (i As Integer) As String
パラメーター
- i
- Int32
属性のインデックス。 インデックスは 0 から始まっています。
戻り値
指定したインデックスにある属性の値。
注釈
メソッドはリーダーの位置を移動しません。
適用対象
GetAttribute(String)
指定した名前の属性の値を取得します。
public:
override System::String ^ GetAttribute(System::String ^ name);
public override string GetAttribute (string name);
override this.GetAttribute : string -> string
Public Overrides Function GetAttribute (name As String) As String
パラメーター
- name
- String
属性の限定名。
戻り値
属性の値。 指定した属性が見つからない場合は null が返されます。
注釈
メソッドはリーダーの位置を移動しません。
適用対象
GetAttribute(String, String)
指定した名前と名前空間 URI に関連付けられた属性の値を取得します。
public:
override System::String ^ GetAttribute(System::String ^ name, System::String ^ namespaceURI);
public override string GetAttribute (string name, string namespaceURI);
override this.GetAttribute : string * string -> string
Public Overrides Function GetAttribute (name As String, namespaceURI As String) As String
パラメーター
- name
- String
属性のローカル名。
- namespaceURI
- String
属性の名前空間。
戻り値
属性の値。 指定した属性が見つからない場合は null が返されます。
注釈
メソッドはリーダーを移動しません。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET