HttpRequestWrapper.ValidateInput Method

Definition

Causes validation to occur for the collections that are accessed through the Cookies, Form, and QueryString properties.

public:
 override void ValidateInput();
public override void ValidateInput ();
override this.ValidateInput : unit -> unit
Public Overrides Sub ValidateInput ()

Remarks

The HttpRequest class uses input validation flags to determine whether to perform validation on the request collections that are accessed through the Cookies, Form, and QueryString properties. The ValidateInput method sets these flags so that when the get accessors of the Cookies, Form, or QueryString properties are invoked, input validation is performed. Validation works by checking all input data against a hard-coded list of potentially dangerous data.

Applies to