HttpRequestBase.Item[String] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets the specified object from the Cookies, Form, QueryString, or ServerVariables collections.
public:
virtual property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ key); };
public virtual string this[string key] { get; }
member this.Item(string) : string
Default Public Overridable ReadOnly Property Item(key As String) As String
Parameters
- key
- String
The name of the collection member to get.
Property Value
The QueryString, Form, Cookies, or ServerVariables collection member that is specified by key
. If the specified key
value is not found, null
is returned.
Exceptions
Always.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.