C# Class OpenStory.Services.Contracts.BootstrapperBase

Represents a base implementation of the IBootstrapper interface.
Inheritance: IBootstrapper
Afficher le fichier Open project: shoftee/OpenStory

Méthodes publiques

Méthode Description
Start ( ) : void

Méthodes protégées

Méthode 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 méthode

Initializes it all.
protected BootstrapperBase ( IResolutionRoot resolutionRoot, ILogger logger ) : System
resolutionRoot IResolutionRoot
logger ILogger
Résultat System

OnStarting() protected abstract méthode

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

Start() public méthode

public Start ( ) : void
Résultat void