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) 中搜索。

适用于

另请参阅