Interface IViewsContentClient
Interface for a client that can interact with views.
Inherited Members
Namespace: Tableau.Migration.Engine.Endpoints.ContentClients
Assembly: Tableau.Migration.dll
Syntax
public interface IViewsContentClient : IContentClient<IView>, IContentReferenceFinder<IView>, IContentReferenceFinder
Methods
GetByIdAsync(Guid, CancellationToken)
Get the view by ID.
Declaration
Task<IResult<IView>> GetByIdAsync(Guid id, CancellationToken cancel)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | id | The ID of the view to get. |
| CancellationToken | cancel | The cancellation token to obey. |
Returns
| Type | Description |
|---|---|
| Task<IResult<IView>> | The result with the view. |