C# Class Microsoft.AspNet.SignalR.DefaultDependencyResolver

Inheritance: IDependencyResolver
ファイルを表示 Open project: SignalR/SignalR Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void
GetService ( Type serviceType ) : object
GetServices ( Type serviceType ) : IEnumerable
Register ( Type serviceType, Func activator ) : void
Register ( Type serviceType, IEnumerable activators ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
DefaultDependencyResolver ( ) : System
RegisterDefaultServices ( ) : void
RegisterHubExtensions ( ) : void
Track ( Func creator ) : object

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

GetService() public method

public GetService ( Type serviceType ) : object
serviceType System.Type
return object

GetServices() public method

public GetServices ( Type serviceType ) : IEnumerable
serviceType System.Type
return IEnumerable

Register() public method

public Register ( Type serviceType, Func activator ) : void
serviceType System.Type
activator Func
return void

Register() public method

public Register ( Type serviceType, IEnumerable activators ) : void
serviceType System.Type
activators IEnumerable
return void