HttpRequest.Item[String] Proprietà
Definizione
Ottiene l'oggetto specificato dagli insiemi QueryString, Form, Cookies o ServerVariables.Gets the specified object from the QueryString, Form, Cookies, or ServerVariables collections.
public:
property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ key); };
public string this[string key] { get; }
member this.Item(string) : string
Default Public ReadOnly Property Item(key As String) As String
Parametri
- key
- String
Nome del membro dell'insieme da ottenere.The name of the collection member to get.
Valore della proprietà
Membro dell'insieme QueryString, Form, Cookies oppure ServerVariables specificato nel parametro key
.The QueryString, Form, Cookies, or ServerVariables collection member specified in the key
parameter. Se il parametro key
specificato non viene trovato, verrà restituito null
.If the specified key
is not found, then null
is returned.