mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 21:39:34 +02:00
replaced autofac with TinyIoC
This commit is contained in:
25
NzbDrone.Common/ReflectionExtentions.cs
Normal file
25
NzbDrone.Common/ReflectionExtentions.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
||||
namespace NzbDrone.Common
|
||||
{
|
||||
public static class ReflectionExtensions
|
||||
{
|
||||
public static IEnumerable<Type> GetInterfaces(this Assembly assembly)
|
||||
{
|
||||
return assembly.GetTypes().Where(c => c.IsInterface);
|
||||
}
|
||||
|
||||
public static IEnumerable<Type> GetImplementations(this Assembly assembly, Type contractType)
|
||||
{
|
||||
return assembly.GetTypes()
|
||||
.Where(implementation =>
|
||||
contractType.IsAssignableFrom(implementation) &&
|
||||
!implementation.IsInterface &&
|
||||
!implementation.IsAbstract
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user