C# Class OpenStory.Services.Contracts.BootstrapperBase

Represents a base implementation of the IBootstrapper interface.
Inheritance: IBootstrapper
ファイルを表示 Open project: shoftee/OpenStory

Public Methods

Method Description
Start ( ) : void

Protected Methods

Method Description
BootstrapperBase ( IResolutionRoot resolutionRoot, ILogger logger ) : System

Initializes it all.

OnStarting ( ) : void

A hook to the middle of the public Start() method.

Implement this method for your custom bootstrapper logic.

Method Details

BootstrapperBase() protected method

Initializes it all.
protected BootstrapperBase ( IResolutionRoot resolutionRoot, ILogger logger ) : System
resolutionRoot IResolutionRoot
logger ILogger
return System

OnStarting() protected abstract method

A hook to the middle of the public Start() method.
Implement this method for your custom bootstrapper logic.
protected abstract OnStarting ( ) : void
return void

Start() public method

public Start ( ) : void
return void