C# Класс 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.
Наследование: IHttpModule
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Приватные методы

Метод Описание
DisposeCompositionScope ( object sender, EventArgs e ) : void

Описание методов

Dispose() публичный Метод

Release resources used by the module.
public Dispose ( ) : void
Результат void

Init() публичный Метод

Initialize the module.
public Init ( System.Web.HttpApplication context ) : void
context System.Web.HttpApplication Application in which the module is running.
Результат void

Register() публичный статический Метод

Register the module. This method is automatically called at startup and should not be called by user code.
public static Register ( ) : void
Результат void