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 (25.3.0.1000)
SyntaxICollection<Type> GetExtensions(
	Type baseType
)
Function GetExtensions ( 
	baseType As Type
) As ICollection(Of Type)
ICollection<Type^>^ GetExtensions(
	Type^ baseType
)
abstract GetExtensions : 
        baseType : Type -> ICollection<Type> 
Parameters
- baseType
 - Type: SystemType
The base type. 
Return Value
Type: 
ICollectionTypeA list of types corresponding to all registered extensions deriving from 
baseType.
Exceptions
Remarks  Note | 
|---|
| The specified base type should have previously been registered with the extensibility system using RegisterBaseType(Type). | 
See Also