HttpRuntimeSection.RequestValidationType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置用于验证 HTTP 请求的类型的名称。
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
属性值
处理请求验证任务的类型的名称。 默认值为 ASP.NET 用于验证的 RequestValidator 类型的完全限定名称。
- 属性
注解
若要自定义 ASP.NET 请求验证行为,可以创建从 RequestValidator 类型继承的类。 然后,在应用程序的配置文件中,将 元素的 httpRuntime
属性设置为requestValidationType
自定义类型的完全限定字符串名称。 有关详细信息,请参阅 httpRuntime 元素 (ASP.NET 设置架构) 。