GSF.TypeExtensions.LoadImplementations C# (CSharp) Method

LoadImplementations() public static method

Loads public types from assemblies in the application binaries directory that implement the specified type either through class inheritance or interface implementation.
public static LoadImplementations ( this type ) : List
type this The that must be implemented by the public types.
return List
        public static List<Type> LoadImplementations(this Type type)
        {
            return LoadImplementations(type, true);
        }

Same methods

TypeExtensions::LoadImplementations ( this type, bool excludeAbstractTypes ) : List
TypeExtensions::LoadImplementations ( this type, string binariesDirectory ) : List
TypeExtensions::LoadImplementations ( this type, string binariesDirectory, bool excludeAbstractTypes, bool validateReferences = true ) : List