up vote 13 down vote favorite
4
share [g+] share [fb]

How to get all implementations of an interface through reflection in C#

link|improve this question
Related question: stackoverflow.com/questions/5849210/… – David Pfeffer May 1 '11 at 15:11
feedback

5 Answers

The anwer is this; it searches through the entire application domain -- that is, every assembly currently loaded by your application.

    /// <summary>
    /// Returns all types in the current AppDomain implementing the interface or inheriting the type. 
    /// </summary>
    public static IEnumerable<Type> TypesImplementingInterface(Type desiredType)
    {
        return AppDomain
            .CurrentDomain
            .GetAssemblies()
            .SelectMany(assembly => assembly.GetTypes())
            .Where(type => desiredType.IsAssignableFrom(type));

    }

It is used like this;

var disposableTypes =  TypesImplementingInterface(typeof(IDisposable));

You may also want this function to find actual concrete types -- ie, filtering out abstracts, interfaces, and generic type definitions.

    public static bool IsRealClass(Type testType)
    {
        return testType.IsAbstract == false
            && testType.IsGenericTypeDefinition == false
            && testType.IsInterface == false;
    }
link|improve this answer
3  
Note that this code can't see the future -- it can't find implementation of this interface in interfaces that have not yet been loaded. – Aaron Sep 18 '08 at 9:49
I think that I might turn this into an extension method for Type, might turn out to be very useful. – Simon Farrow Feb 16 '09 at 11:28
Steve: Can you shed any light on a similar problem I'm having: stackoverflow.com/questions/5849210/… – David Pfeffer May 1 '11 at 15:12
feedback

Have a look at Assembly.GetTypes() method. It returns all the types that can be found in an assembly. All you have to do is to iterate through every returned type and check if it implements neccesary interface.

On of the way to do so is using Type.IsAssignableFrom method.

Here is the example. myInterface is the interface, implementations of which you are searching for.

Assembly myAssembly;
Type myInterface;
foreach (Type type in myAssembly.GetTypes())
{
    if (myInterface.IsAssignableFrom(type))
        Console.WriteLine(type.FullName);
}

I do beleive that it is not a very efficient way to solve your problem, but at least, it is a good place to start.

link|improve this answer
feedback
Assembly assembly = Assembly.GetExecutingAssembly();
List<Type> types = assembly.GetTypes();
List<Type> childTypes = new List<Type>();
foreach (Type type in Types) {
  foreach (Type interfaceType in type.GetInterfaces()) {
       if (interfaceType.Equals(typeof([yourinterfacetype)) {
            childTypes.Add(type)
            break;
       }
  }
}

Maybe something like that....

link|improve this answer
This doesn't find types in other assemblies that implement said interface. – Aaron Sep 18 '08 at 9:47
feedback

Do you mean all interfaces a Type implements?

Like this:

ObjX foo = new ObjX();
Type tFoo = foo.GetType();
Type[] tFooInterfaces = tFoo.GetInterfaces();
foreach(Type tInterface in tFooInterfaces)
{
  // do something with it
}

Hope tha helpts.

link|improve this answer
feedback

You have to loop over all assemblies that you are interested in. From the assembly you can get all the types it defines. Note that when you do AppDomain.CurrentDomain.Assemblies you only get the assemblies that are loaded. Assemblies are not loaded until they are needed, so that means that you have to explicitly load the assemblies before you start searching.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown