NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IHttpModule.Init

Invoked by ASP+ to enable a module to setup itself to handle requests.

[Visual Basic]
Sub Init( _
   ByVal context As HttpApplication _
)
[C#]
void Init(
   HttpApplication context
);
[C++]
void Init(
   HttpApplication* context
) = 0;
[JScript]
function Init(
   context : HttpApplication
);

Parameters

context
A managed reference to an HttpContext object.

See Also

IHttpModule Interface | IHttpModule Members | System.Web Namespace