IExtensionServiceGetExtensions Method

Gets all types corresponding to extensions inheriting from or implementing the specified registered base type.

Namespace:  Dundas.BI.Extensibility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
ICollection<Type> GetExtensions(
	Type baseType
)

Parameters

baseType
Type: SystemType
The base type.

Return Value

Type: ICollectionType
A list of types corresponding to all registered extensions deriving from baseType.
Exceptions
ExceptionCondition
ArgumentNullExceptionbaseType is .
Remarks
Note Note
The specified base type should have previously been registered with the extensibility system using RegisterBaseType(Type).
See Also