IRequestCookieCollection.Item[String] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la valeur avec la clé spécifiée.
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
Paramètres
- key
- String
Clé de la valeur à obtenir.
Valeur de propriété
Élément avec la clé spécifiée ou null
si la clé n’est pas présente.
Exceptions
key a la valeur null.
Remarques
IRequestCookieCollection a un contrat d’indexeur différent de IDictionary<TKey,TValue>, car il retourne null
pour les entrées manquantes plutôt que de lever une exception.