Init Method
The IHttpModule.Init implementation. Initializes the module and sets up the event handlers.
Namespace: Microsoft.CommerceServer.Runtime
Assembly: Microsoft.CommerceServer.Runtime (in Microsoft.CommerceServer.Runtime.dll)
Syntax
'Declaration
Public Overrides Sub Init ( _
appInstance As HttpApplication _
)
'Usage
Dim instance As CommerceApplicationModule
Dim appInstance As HttpApplication
instance.Init(appInstance)
public override void Init(
HttpApplication appInstance
)
public:
virtual void Init(
HttpApplication^ appInstance
) override
public override function Init(
appInstance : HttpApplication
)
Parameters
- appInstance
Type: System.Web..::.HttpApplication
The current Application instance (ASP.Net maintains a pool of these for every ASP.Net application
Implements
IHttpModule..::.Init(HttpApplication)
Remarks
Use this method to initialize the module and set up the event handlers.
The SiteName, Resources, Pipelines and DebugContext properties are initialized here after reading the <application> portion of the CommerceServer config section group.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
CommerceApplicationModule Class