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 設定スキーマ)」を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET