次の方法で共有


HttpModuleAction(String, String) コンストラクター

定義

渡されたパラメーターを使用して、HttpModuleAction クラスの新しいインスタンスを初期化します。

public:
 HttpModuleAction(System::String ^ name, System::String ^ type);
public HttpModuleAction (string name, string type);
new System.Web.Configuration.HttpModuleAction : string * string -> System.Web.Configuration.HttpModuleAction
Public Sub New (name As String, type As String)

パラメーター

name
String

モジュール名。

type
String

モジュール型名とアセンブリ情報を含むコンマ区切りリスト。

次のコード例は、オブジェクトを作成する方法を HttpModuleAction 示しています。


// Initialize the module name and type properties.
newModuleAction.Name = "ModuleName";
newModuleAction.Type = "ModuleType";
' Initialize the module name and type properties.
newModuleAction.Name = "ModuleName"
newModuleAction.Type = "ModuleType"

注釈

モジュール名は、イベント ハンドラーをモジュール イベントに関連付けるために使用できるエイリアスです。 ASP.NET は、最初にアプリケーションのプライベート \bin ディレクトリでアセンブリ DLL を検索し、次にグローバル アセンブリ キャッシュ (GAC) で検索します。

適用対象

こちらもご覧ください