Retrieve a list of types derived from a base type at the given location. This is a true late-binding method.

Namespace: Cartella.Support
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
public static Type[] GetDerivedTypesFromLocation(
	Type baseType,
	bool includePluginsFolder
)
Visual Basic
Public Shared Function GetDerivedTypesFromLocation ( _
	baseType As Type, _
	includePluginsFolder As Boolean _
) As Type()
Visual C++
public:
static array<Type^>^ GetDerivedTypesFromLocation(
	Type^ baseType, 
	bool includePluginsFolder
)

Parameters

baseType
Type: System..::..Type
Base type
includePluginsFolder
Type: System..::..Boolean
True to include the assemblies in the plugins folder

Return Value

List of derived types

See Also