Open this page in the API Guide

IExtensionService.GetExtensions 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 (25.1.0.1000)
Syntax
ICollection<Type> GetExtensions(
	Type baseType
)

Parameters

baseType
Type: System.Type
The base type.

Return Value

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