C# Класс Sapphire.Application

Наследование: Microsoft.SharePoint.ApplicationRuntime.SPHttpApplication
Показать файл Открыть проект

Защищенные методы

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

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

AddRequiredServices() защищенный Метод

Adds the required application services to the container.
Override this method to add or change the services available in the container.
protected AddRequiredServices ( ) : void
Результат void

Application_Start() защищенный Метод

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.
Результат void

CreateContainer() защищенный Метод

Creates the application root container.
Override this method to change the container to be used by the application.
protected CreateContainer ( ) : void
Результат void

Start() защищенный Метод

Override this method to add behavior to be executed once the application has started.
protected Start ( ) : void
Результат void