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 (26.2.0.1000)
Syntax
ICollection<Type> GetExtensions(
	Type baseType
)

Parameters

baseType  Type
The base type.

Return Value

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