IHttpModule.Init(HttpApplication) Method

Definition

Initializes a module and prepares it to handle requests.

public:
 void Init(System::Web::HttpApplication ^ context);
public void Init (System.Web.HttpApplication context);
abstract member Init : System.Web.HttpApplication -> unit
Public Sub Init (context As HttpApplication)

Parameters

context
HttpApplication

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

Examples

For an example of a custom module that implements IHttpModule, see Walkthrough: Creating and Registering a Custom HTTP Module.

Remarks

Use the Init method to register event handling methods with specific events.

Applies to