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 類別。 在應用程式的組態檔中,您接著將 requestValidationType
專案的屬性 httpRuntime
設定為自定義類型的完整字串名稱。 如需詳細資訊,請參閱 HTTPRuntime 元素 (ASP.NET 設定架構) 。