C# Class Sapphire.Application

Inheritance: Microsoft.SharePoint.ApplicationRuntime.SPHttpApplication
Mostrar archivo Open project: butaji/Sapphire

Protected Methods

Method Description
AddRequiredServices ( ) : void

Adds the required application services to the container.

Override this method to add or change the services available in the container.

Application_Start ( object sender, EventArgs e ) : void

Handles the Start event and defines the application lifecycle.

CreateContainer ( ) : void

Creates the application root container.

Override this method to change the container to be used by the application.

Start ( ) : void

Override this method to add behavior to be executed once the application has started.

Method Details

AddRequiredServices() protected method

Adds the required application services to the container.
Override this method to add or change the services available in the container.
protected AddRequiredServices ( ) : void
return void

Application_Start() protected method

Handles the Start event and defines the application lifecycle.
protected Application_Start ( object sender, EventArgs e ) : void
sender object The object firing the event.
e System.EventArgs The event associated data.
return void

CreateContainer() protected method

Creates the application root container.
Override this method to change the container to be used by the application.
protected CreateContainer ( ) : void
return void

Start() protected method

Override this method to add behavior to be executed once the application has started.
protected Start ( ) : void
return void