HttpRuntimeSection.RequestValidationType 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.
Gets or sets the name of a type that is used to validate HTTP requests.
public:
property System::String ^ RequestValidationType { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("requestValidationType", DefaultValue="System.Web.Util.RequestValidator")]
[System.Configuration.StringValidator(MinLength=1)]
public string RequestValidationType { get; set; }
[<System.Configuration.ConfigurationProperty("requestValidationType", DefaultValue="System.Web.Util.RequestValidator")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.RequestValidationType : string with get, set
Public Property RequestValidationType As String
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).