Retrieve all the assemblies from given folder.

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

Syntax

C#
public static Assembly[] GetAssembliesInFolder(
	bool includePluginsFolder,
	string[] allowedProducts,
	string[] allowedPluginTitleVersions
)
Visual Basic
Public Shared Function GetAssembliesInFolder ( _
	includePluginsFolder As Boolean, _
	allowedProducts As String(), _
	allowedPluginTitleVersions As String() _
) As Assembly()
Visual C++
public:
static array<Assembly^>^ GetAssembliesInFolder(
	bool includePluginsFolder, 
	array<String^>^ allowedProducts, 
	array<String^>^ allowedPluginTitleVersions
)

Parameters

includePluginsFolder
Type: System..::..Boolean
True to include the Plugins folder under the folder
allowedProducts
Type: array<System..::..String>[]()[][]
allowedPluginTitleVersions
Type: array<System..::..String>[]()[][]

Return Value

List of assemblies retrieved from given folder

See Also