C# Class Core.Framework.MEF.Web.Application

Defines a modular application that supports imported types.
Inheritance: System.Web.HttpApplication
Afficher le fichier Open project: coreframework/Core-Framework

Private Properties

Свойство Type Description
GetHttpModuleComponentName String

Méthodes publiques

Méthode Description
GetVerbsForCategory ( String category ) : IEnumerable

Gets the available verbs for the given category.

RegisterHttpModule ( Type moduleType ) : void
StartPlugins ( ) : void
UnregisterHttpModule ( Type moduleType ) : void

Méthodes protégées

Méthode Description
Application_Start ( ) : void

The start method of the application.

Compose ( ) : void

Composes the application.

Initialise ( ) : void

Initialises the application.

MapPath ( String virtualPath ) : String

Maps the specified virtual path.

PreCompose ( ) : void

Fired before the application is composed.

RegisterAreas ( ) : void
RegisterRoutes ( ) : void

Registers any routes required by the application.

Private Methods

Méthode Description
GetHttpModuleComponentName ( Type moduleType ) : String

Method Details

Application_Start() protected méthode

The start method of the application.
protected Application_Start ( ) : void
Résultat void

Compose() protected méthode

Composes the application.
protected Compose ( ) : void
Résultat void

GetVerbsForCategory() public static méthode

Gets the available verbs for the given category.
public static GetVerbsForCategory ( String category ) : IEnumerable
category String The category of verbs to get.
Résultat IEnumerable

Initialise() protected méthode

Initialises the application.
protected Initialise ( ) : void
Résultat void

MapPath() protected static méthode

Maps the specified virtual path.
protected static MapPath ( String virtualPath ) : String
virtualPath String The virtual path to map.
Résultat String

PreCompose() protected méthode

Fired before the application is composed.
protected PreCompose ( ) : void
Résultat void

RegisterAreas() protected méthode

protected RegisterAreas ( ) : void
Résultat void

RegisterHttpModule() public static méthode

public static RegisterHttpModule ( Type moduleType ) : void
moduleType System.Type
Résultat void

RegisterRoutes() protected méthode

Registers any routes required by the application.
protected RegisterRoutes ( ) : void
Résultat void

StartPlugins() public static méthode

public static StartPlugins ( ) : void
Résultat void

UnregisterHttpModule() public static méthode

public static UnregisterHttpModule ( Type moduleType ) : void
moduleType System.Type
Résultat void