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 ,而不是引发异常。

适用于