HttpRequest.ValidateInput Method
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.
Causes validation to occur for the collections accessed through the Cookies, Form, and QueryString properties.
public:
void ValidateInput();
public void ValidateInput ();
member this.ValidateInput : unit -> unit
Public Sub ValidateInput ()
Exceptions
Potentially dangerous data was received from the client.
Remarks
The HttpRequest class uses input validation flags to track whether to perform validation on the request collections accessed through the Cookies, Form, and QueryString properties. The ValidateInput method sets these flags so that when the get accessors for the Cookies, Form, or QueryString property are invoked, input validation is performed. Validation works by checking all input data against a hard-coded list of potentially dangerous data.
If the validation feature is enabled by page directive or configuration, this method is called during the page's ProcessRequest
processing phase. The ValidateInput method can be called by your code if the validation feature is not enabled.