mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
32 lines
810 B
C#
32 lines
810 B
C#
using System;
|
|
using Microsoft.AspNet.SignalR;
|
|
using NzbDrone.Common.Composition;
|
|
|
|
namespace NzbDrone.Api.SignalR
|
|
{
|
|
public class SignalrDependencyResolver : DefaultDependencyResolver
|
|
{
|
|
private readonly IContainer _container;
|
|
|
|
public static void Register(IContainer container)
|
|
{
|
|
GlobalHost.DependencyResolver = new SignalrDependencyResolver(container);
|
|
}
|
|
|
|
private SignalrDependencyResolver(IContainer container)
|
|
{
|
|
_container = container;
|
|
}
|
|
|
|
public override object GetService(Type serviceType)
|
|
{
|
|
if (_container.IsTypeRegistered(serviceType))
|
|
{
|
|
return _container.Resolve(serviceType);
|
|
}
|
|
|
|
return base.GetService(serviceType);
|
|
}
|
|
}
|
|
}
|