Get a specific type from given hard drive location, searching through all DLL files.

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

Syntax

C#
public static Type GetTypeFromLocation(
	string location,
	string typeName,
	bool includePluginsFolder
)
Visual Basic
Public Shared Function GetTypeFromLocation ( _
	location As String, _
	typeName As String, _
	includePluginsFolder As Boolean _
) As Type
Visual C++
public:
static Type^ GetTypeFromLocation(
	String^ location, 
	String^ typeName, 
	bool includePluginsFolder
)

Parameters

location
Type: System..::..String
Hard Drive Path
typeName
Type: System..::..String
Full name of the type to be located
includePluginsFolder
Type: System..::..Boolean
Decide if to include the "Plugins" folder in the target location, when searching for the type

Return Value

Type with given full name, or null if doesn't exist in location

See Also