C# Class SignalR.Castle.Windsor.HubsInstallers

Inheritance: IWindsorInstaller
ファイルを表示 Open project: AGiorgetti/SignalR.Castle.Windsor

Public Methods

Method Description
HubsInstallers ( Assembly assembly ) : System

registers all the hubs contained in the passed in assembly

HubsInstallers ( AssemblyFilter filter ) : System

registers all the hubs in the assemblies specified by the filter

HubsInstallers ( Type typeContainedInAssembly ) : System

registers all the hubs contained in the assembly to which the specified type belongs to

HubsInstallers ( string assemblyName ) : System

registers all the hubs in the assembly specified by the assembly name parameter

Install ( IWindsorContainer container, IConfigurationStore store ) : void

todo: first raw implementation... add options for lifestyle management, singleton might not be the best one

Method Details

HubsInstallers() public method

registers all the hubs contained in the passed in assembly
public HubsInstallers ( Assembly assembly ) : System
assembly System.Reflection.Assembly The assembly.
return System

HubsInstallers() public method

registers all the hubs in the assemblies specified by the filter
public HubsInstallers ( AssemblyFilter filter ) : System
filter AssemblyFilter The filter.
return System

HubsInstallers() public method

registers all the hubs contained in the assembly to which the specified type belongs to
public HubsInstallers ( Type typeContainedInAssembly ) : System
typeContainedInAssembly System.Type
return System

HubsInstallers() public method

registers all the hubs in the assembly specified by the assembly name parameter
public HubsInstallers ( string assemblyName ) : System
assemblyName string Name of the assembly.
return System

Install() public method

todo: first raw implementation... add options for lifestyle management, singleton might not be the best one
public Install ( IWindsorContainer container, IConfigurationStore store ) : void
container IWindsorContainer
store IConfigurationStore
return void