C# Class SignalR.Castle.CastleDependencyResolver

Castle Windsor implementation of the Microsoft.AspNet.SignalR.IDependencyResolver interface.
Inheritance: Microsoft.AspNet.SignalR.DefaultDependencyResolver
Show file Open project: stormid/signalR.Castle

Public Methods

Method Description
CastleDependencyResolver ( IKernel kernel ) : System
GetService ( Type serviceType ) : object

Get a single instance of a service.

GetServices ( Type serviceType ) : IEnumerable

Gets all available instances of a services.

Method Details

CastleDependencyResolver() public method

public CastleDependencyResolver ( IKernel kernel ) : System
kernel IKernel
return System

GetService() public method

Get a single instance of a service.
public GetService ( Type serviceType ) : object
serviceType System.Type Type of the service.
return object

GetServices() public method

Gets all available instances of a services.
public GetServices ( Type serviceType ) : IEnumerable
serviceType System.Type Type of the service.
return IEnumerable