adTempus API
ArcanaDevelopment.adTempus.Shared.Extensibility Namespace / IExtensionManager Interface / GetExtensionsForType<T> Method
The type of extension to get. Must be a value from ExtensionTypes


In This Topic
    GetExtensionsForType<T> Method
    In This Topic
    Gets all registered extensions of the specified extensionTypeName
    Syntax
    'Declaration
     
    
    Function GetExtensionsForType(Of T As IExtensionDefinition)( _
       ByVal extensionTypeName As String _
    ) As IEnumerable(Of T)
    IEnumerable<T> GetExtensionsForType<T>( 
       string extensionTypeName
    )
    where T: IExtensionDefinition
    IEnumerable<T^>^ GetExtensionsForTypegeneric<typename T>
    ( 
       String^ extensionTypeName
    ) 
    where T: IExtensionDefinition

    Parameters

    extensionTypeName
    The type of extension to get. Must be a value from ExtensionTypes

    Type Parameters

    T
    See Also