Initializes a module and prepares its to handle requests. Do not use this method.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.0.0

Syntax

C#
public void Init(
	HttpApplication app
)
Visual Basic (Declaration)
Public Sub Init ( _
	app As HttpApplication _
)

Parameters

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

Implements

IHttpModule..::.Init(HttpApplication)

Remarks

You should not call this method. It is used for integration EAUploadModule into ASP.NET request pipeline. This method is public because implementation of IHttpModule interface requires this.

See Also