IRequestCookieCollection.Item[String] プロパティ

定義

指定したキーを持つ値を取得します。

public:
 property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ key); };
public string this[string key] { get; }
public string? this[string key] { get; }
member this.Item(string) : string
Default Public ReadOnly Property Item(key As String) As String

パラメーター

key
String

取得する値のキー。

プロパティ値

指定したキーを持つ要素。キー null が存在しない場合は 。

例外

key が null です。

注釈

IRequestCookieCollection には とは異なるインデクサー コントラクト IDictionary<TKey,TValue>があります。例外をスローするのではなく、不足しているエントリに対して が返 null されるためです。

適用対象