HttpModuleAction Constructor (String, String)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the HttpModuleAction class using the passed parameters.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

Public Sub New (
	name As String,
	type As String
)

Parameters

name
Type: System.String

The module name.

type
Type: System.String

A comma-separated list containing the module type name and the assembly information.

The module name is an alias you can use to associate event handlers with the module events. ASP.NET searches for the assembly DLL first in the application's private \bin directory and then in the Global Assembly Cache (GAC).

The following code example shows how to create an HttpModuleAction object.

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

.NET Framework
Available since 2.0
Return to top
Show: