HttpRuntimeSection.RequestValidationType Property

Definition

Gets or sets the name of a type that is used to validate HTTP requests.

C#
[System.Configuration.ConfigurationProperty("requestValidationType", DefaultValue="System.Web.Util.RequestValidator")]
[System.Configuration.StringValidator(MinLength=1)]
public string RequestValidationType { get; set; }

Property Value

The name of a type that handles request validation tasks. The default is the fully qualified name of the RequestValidator type that ASP.NET uses for validation.

Attributes

Remarks

To customize ASP.NET request validation behavior, you can create a class that inherits from the RequestValidator type. In the configuration file for an application, you then set the requestValidationType attribute of the httpRuntime element to the fully qualified string name of the custom type. For more information, see httpRuntime Element (ASP.NET Settings Schema).

Applies to

Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1