This documentation is archived and is not being maintained.
HttpRuntimeSection::RequestValidationType Property
Visual Studio 2010
Gets or sets the name of a type that is used to validate HTTP requests.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute(L"requestValidationType", DefaultValue = L"System.Web.Util.RequestValidator")] [StringValidatorAttribute(MinLength = )] public: property String^ RequestValidationType { String^ get (); void set (String^ value); }
Property Value
Type: System::StringThe 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.
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).
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: