UnvalidatedRequestValuesBase.Item[String] Property

Definition

When overridden in a derived class, gets the specified object from the Form, Cookies, QueryString, or ServerVariables collection, without triggering ASP.NET request validation.

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

Parameters

field
String

The key of the object to retrieve.

Property Value

The object specified by the field parameter.

Exceptions

The property is not implemented.

Notes to Inheritors

If you override this property in a derived class, you must manually check the data for potential cross-site scripting attacks.

Applies to