Interface IContentTransformerRunner
Interface for an object that can run transformations.
Namespace: Tableau.Migration.Engine.Hooks.Transformers
Assembly: Tableau.Migration.dll
Syntax
public interface IContentTransformerRunner
Methods
ExecuteAsync<TPublish>(TPublish, CancellationToken)
Executes all transformations for the content type in order.
Declaration
Task<TPublish> ExecuteAsync<TPublish>(TPublish itemToTransform, CancellationToken cancel)
Parameters
Type | Name | Description |
---|---|---|
TPublish | itemToTransform | The items to transform. |
CancellationToken | cancel | The cancellation token to obey. |
Returns
Type | Description |
---|---|
Task<TPublish> | The resulting transformed item. |
Type Parameters
Name | Description |
---|---|
TPublish | The publishable content type. |