C# Class CompositeWpfDemo.Infrastructure.Startup.CaliburnBootstrapper

Datei anzeigen Open project: pwlodek/CodeGallery

Public Methods

Method Description
Run ( ) : void

Runs the bootstrapper sequence.

Protected Methods

Method Description
AfterStart ( ) : void

Configures application after Caliburn framework has started.

BeforeStart ( CoreConfiguration core ) : void

Configures additional modules befores the starting the Caliburn framework.

CaliburnBootstrapper ( IApplication application ) : System

Initializes a new instance of the CaliburnBootstrapper class.

ConfigureCaliburn ( CoreConfiguration configuration ) : void

Configures the Caliburn framework.

CreateCaliburnContainer ( ) : IContainer
CreateContainer ( ) : IContainerFacade
CreateShell ( ) : DependencyObject
InitializeServices ( ) : void
RegisterPresenters ( ) : void
RegisterServices ( ) : void
RegisterViews ( ) : void

Method Details

AfterStart() protected method

Configures application after Caliburn framework has started.
protected AfterStart ( ) : void
return void

BeforeStart() protected method

Configures additional modules befores the starting the Caliburn framework.
protected BeforeStart ( CoreConfiguration core ) : void
core CoreConfiguration The core of Caliburn.
return void

CaliburnBootstrapper() protected method

Initializes a new instance of the CaliburnBootstrapper class.
protected CaliburnBootstrapper ( IApplication application ) : System
application IApplication Instance representing current application.
return System

ConfigureCaliburn() protected method

Configures the Caliburn framework.
protected ConfigureCaliburn ( CoreConfiguration configuration ) : void
configuration CoreConfiguration The core of Caliburn.
return void

CreateCaliburnContainer() protected abstract method

protected abstract CreateCaliburnContainer ( ) : IContainer
return IContainer

CreateContainer() protected abstract method

protected abstract CreateContainer ( ) : IContainerFacade
return IContainerFacade

CreateShell() protected abstract method

protected abstract CreateShell ( ) : DependencyObject
return DependencyObject

InitializeServices() protected method

protected InitializeServices ( ) : void
return void

RegisterPresenters() protected method

protected RegisterPresenters ( ) : void
return void

RegisterServices() protected method

protected RegisterServices ( ) : void
return void

RegisterViews() protected method

protected RegisterViews ( ) : void
return void

Run() public method

Runs the bootstrapper sequence.
public Run ( ) : void
return void