Interface IDestinationViewReferenceFinder
Interface for an object that can find destination views for given source view information, applying mapping rules.
Namespace: Tableau.Migration.Engine.Endpoints.Search
Assembly: Tableau.Migration.dll
Syntax
public interface IDestinationViewReferenceFinder
Methods
FindBySourceIdAsync(Guid, CancellationToken)
Finds the destination view reference for the source view ID.
Declaration
Task<IResult<IContentReference>> FindBySourceIdAsync(Guid sourceViewId, CancellationToken cancel)
Parameters
Type | Name | Description |
---|---|---|
Guid | sourceViewId | The source view ID. |
CancellationToken | cancel | A cancellation token to obey. |
Returns
Type | Description |
---|---|
Task<IResult<IContentReference>> | The result containing the found destination view reference, or a failed result if no destination view was found. |