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
Afficher le fichier Open project: DenisVuyka/Masonry

Méthodes publiques

Méthode 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

Méthode Description
DisposeCompositionScope ( object sender, EventArgs e ) : void

Method Details

Dispose() public méthode

Release resources used by the module.
public Dispose ( ) : void
Résultat void

Init() public méthode

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

Register() public static méthode

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