C# Класс SensorHost.Bootstrapper

The bootstrapper for Nancy.
Наследование: UnityNancyBootstrapper
Показать файл Открыть проект

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

Метод Описание
ApplicationStartup ( IUnityContainer container, IPipelines pipelines ) : void

No registrations should be performed in here, however you may resolve things that are needed during application startup.

ConfigureApplicationContainer ( IUnityContainer existingContainer ) : void

Perform registrations that should have an application lifetime

ConfigureRequestContainer ( IUnityContainer container, Nancy.NancyContext context ) : void

Perform registrations that should have a request lifetime

RequestStartup ( IUnityContainer container, IPipelines pipelines, Nancy.NancyContext context ) : void

No registrations should be performed in here, however you may resolve things that are needed during request startup.

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

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

No registrations should be performed in here, however you may resolve things that are needed during application startup.
protected ApplicationStartup ( IUnityContainer container, IPipelines pipelines ) : void
container IUnityContainer /// The container. ///
pipelines IPipelines /// The pipelines. ///
Результат void

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

Perform registrations that should have an application lifetime
protected ConfigureApplicationContainer ( IUnityContainer existingContainer ) : void
existingContainer IUnityContainer /// The existing container. ///
Результат void

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

Perform registrations that should have a request lifetime
protected ConfigureRequestContainer ( IUnityContainer container, Nancy.NancyContext context ) : void
container IUnityContainer /// The container. ///
context Nancy.NancyContext /// The context. ///
Результат void

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

No registrations should be performed in here, however you may resolve things that are needed during request startup.
protected RequestStartup ( IUnityContainer container, IPipelines pipelines, Nancy.NancyContext context ) : void
container IUnityContainer /// The container. ///
pipelines IPipelines /// The pipelines. ///
context Nancy.NancyContext /// The context. ///
Результат void