HttpHandlerAction コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HttpHandlerAction クラスの新しいインスタンスを初期化します。
オーバーロード
HttpHandlerAction(String, String, String) |
渡されたパラメーターを使用して、HttpHandlerAction クラスの新しいインスタンスを初期化します。 |
HttpHandlerAction(String, String, String, Boolean) |
渡されたパラメーターを使用して、HttpHandlerAction クラスの新しいインスタンスを初期化します。 |
HttpHandlerAction(String, String, String)
渡されたパラメーターを使用して、HttpHandlerAction クラスの新しいインスタンスを初期化します。
public:
HttpHandlerAction(System::String ^ path, System::String ^ type, System::String ^ verb);
public HttpHandlerAction (string path, string type, string verb);
new System.Web.Configuration.HttpHandlerAction : string * string * string -> System.Web.Configuration.HttpHandlerAction
Public Sub New (path As String, type As String, verb As String)
パラメーター
- path
- String
HttpHandlerAction の URL パス。
- type
- String
クラスまたはアセンブリのコンマ区切りの組み合わせ。この組み合わせは、バージョン、カルチャ、および公開キー トークンで構成されます。
- verb
- String
HTTP 動詞のコンマ区切りのリスト (たとえば "GET, PUT, POST")。
注釈
コンストラクターは HttpHandlerAction 、コードから直接使用することを意図したものではありません。 これは、ASP.NET 構成システムによって呼び出されます。 プロパティを使用して、 クラスの HttpHandlerAction インスタンスを Handlers 取得します。
適用対象
HttpHandlerAction(String, String, String, Boolean)
渡されたパラメーターを使用して、HttpHandlerAction クラスの新しいインスタンスを初期化します。
public:
HttpHandlerAction(System::String ^ path, System::String ^ type, System::String ^ verb, bool validate);
public HttpHandlerAction (string path, string type, string verb, bool validate);
new System.Web.Configuration.HttpHandlerAction : string * string * string * bool -> System.Web.Configuration.HttpHandlerAction
Public Sub New (path As String, type As String, verb As String, validate As Boolean)
パラメーター
- path
- String
HttpHandlerAction の URL パス。
- type
- String
クラスまたはアセンブリのコンマ区切りの組み合わせ。この組み合わせは、バージョン、カルチャ、および公開キー トークンで構成されます。
- verb
- String
HTTP 動詞のコンマ区切りのリスト (たとえば "GET, PUT, POST")。
- validate
- Boolean
検証を許可する場合は true
。それ以外の場合は false
。
false
の場合、ASP.NET では、実際の一致する要求が到着するまでクラスの読み込みを行いません。これにより、エラーの検出が遅れる可能性がありますが、起動にかかる時間は短くなります。
例
次のコード例は、 オブジェクトを作成する方法を HttpHandlerAction 示しています。
// Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction(
"Calculator.custom",
"Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler",
"GET",
true));
' Add a new HttpHandlerAction to the Handlers property HttpHandlerAction collection.
httpHandlersSection.Handlers.Add(new HttpHandlerAction( _
"Calculator.custom", _
"Samples.Aspnet.SystemWebConfiguration.Calculator, CalculatorHandler", _
"GET", _
true))
注釈
コンストラクターは HttpHandlerAction 、コードから直接使用することを意図したものではありません。 これは、ASP.NET 構成システムによって呼び出されます。 プロパティを使用して、 クラスの HttpHandlerAction インスタンスを Handlers 取得します。
適用対象
.NET