次の方法で共有


HttpHandlerAction コンストラクター

定義

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。それ以外の場合は falsefalse の場合、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 取得します。

適用対象