Initializes a module and prepares it to handle requests.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public void Init(
	HttpApplication context
)
Visual Basic
Public Sub Init ( 
	context As HttpApplication
)
Visual C++
public:
virtual void Init(
	HttpApplication^ context
) sealed
F#
abstract Init : 
        context : HttpApplication -> unit 
override Init : 
        context : HttpApplication -> unit 

Parameters

context
Type: System.Web..::..HttpApplication
An System.Web.HttpApplication that provides access to the methods, properties, and events common to all application objects within an ASP.NET application

Implements

IHttpModule..::..Init(HttpApplication)

See Also