C# Class Masonry.Core.Composition.RequestCompositionScopeModule

Provides lifetime management for the CompositionProvider type. This module is automatically injected into the ASP.NET request processing pipeline at startup and should not be called by user code.
Inheritance: IHttpModule
Show file Open project: DenisVuyka/Masonry

Public Methods

Method Description
Dispose ( ) : void

Release resources used by the module.

Init ( System.Web.HttpApplication context ) : void

Initialize the module.

Register ( ) : void

Register the module. This method is automatically called at startup and should not be called by user code.

Private Methods

Method Description
DisposeCompositionScope ( object sender, EventArgs e ) : void

Method Details

Dispose() public method

Release resources used by the module.
public Dispose ( ) : void
return void

Init() public method

Initialize the module.
public Init ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication Application in which the module is running.
return void

Register() public static method

Register the module. This method is automatically called at startup and should not be called by user code.
public static Register ( ) : void
return void