Interface IMigrationHookFactoryCollection
Interface for an object that contains MigrationHookFactorys registered for each hook type.
Namespace: Tableau.Migration.Engine.Hooks
Assembly: Tableau.Migration.dll
Syntax
public interface IMigrationHookFactoryCollection
Methods
GetHooks(Type)
Gets the MigrationHookFactorys for the given hook type.
Declaration
ImmutableArray<IMigrationHookFactory> GetHooks(Type hookType)
Parameters
Type | Name | Description |
---|---|---|
Type | hookType | The hook type. |
Returns
Type | Description |
---|---|
ImmutableArray<IMigrationHookFactory> | An immutable array of the registered hook factories for the given type. |
GetHooks<THook>()
Gets the MigrationHookFactorys for the given hook type.
Declaration
ImmutableArray<IMigrationHookFactory> GetHooks<THook>()
Returns
Type | Description |
---|---|
ImmutableArray<IMigrationHookFactory> | An immutable array of the registered hook factories for the given type. |
Type Parameters
Name | Description |
---|---|
THook | The hook type. |