Implementations of interface through Reflection - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T00:17:33Zhttp://stackoverflow.com/feeds/question/80247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection1Implementations of interface through ReflectionChethan2008-09-17T05:20:42Z2008-09-18T09:45:30Z
<p>How to get all implementations of an interface through reflection in C#</p>
http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80325#803250Answer by AlexDuggleby for Implementations of interface through ReflectionAlexDuggleby2008-09-17T05:36:34Z2008-09-17T05:36:34Z<p>Do you mean all interfaces a Type implements?</p>
<p>Like this:</p>
<pre><code>ObjX foo = new ObjX();
Type tFoo = foo.GetType();
Type[] tFooInterfaces = tFoo.GetInterfaces();
foreach(Type tInterface in tFooInterfaces)
{
// do something with it
}
</code></pre>
<p>Hope tha helpts.</p>
http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80343#803432Answer by Anton for Implementations of interface through ReflectionAnton2008-09-17T05:43:42Z2008-09-17T05:50:52Z<p>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.</p>
<p>On of the way to do so is using Type.IsAssignableFrom method.</p>
<p>Here is the example. myInterface is the interface, implementations of which you are searching for.</p>
<pre><code>Assembly myAssembly;
Type myInterface;
foreach (Type type in myAssembly.GetTypes())
{
if (myInterface.IsAssignableFrom(type))
Console.WriteLine(type.FullName);
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80371#803710Answer by Chethan for Implementations of interface through ReflectionChethan2008-09-17T05:48:59Z2008-09-17T05:48:59Z<p>I want all the classes that implements an interface</p>
http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80375#803752Answer by driscadam for Implementations of interface through Reflectiondriscadam2008-09-17T05:49:54Z2008-09-17T05:49:54Z<pre><code>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;
}
}
}
</code></pre>
<p>Maybe something like that....</p>
http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/80467#804679Answer by Steve Cooper for Implementations of interface through ReflectionSteve Cooper2008-09-17T06:11:51Z2008-09-17T06:11:51Z<p>The anwer is this; it searches through the entire application domain -- that is, every assembly currently loaded by your application.</p>
<pre><code> /// <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));
}
</code></pre>
<p>It is used like this;</p>
<pre><code>var disposableTypes = TypesImplementingInterface(typeof(IDisposable));
</code></pre>
<p>You may also want this function to find actual concrete types -- ie, filtering out abstracts, interfaces, and generic type definitions.</p>
<pre><code> public static bool IsRealClass(Type testType)
{
return testType.IsAbstract == false
&& testType.IsGenericTypeDefinition == false
&& testType.IsInterface == false;
}
</code></pre>
http://stackoverflow.com/questions/80247/implementations-of-interface-through-reflection/81707#817070Answer by Hallgrim for Implementations of interface through ReflectionHallgrim2008-09-17T10:12:29Z2008-09-17T10:12:29Z<p>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.</p>