Interface IDeleteApiClient
Interface for a content typed API client that can delete items.
Namespace: Tableau.Migration.Api
Assembly: Tableau.Migration.dll
Syntax
public interface IDeleteApiClient
Methods
DeleteAsync(Guid, CancellationToken)
Deletes a content item.
Declaration
Task<IResult> DeleteAsync(Guid id, CancellationToken cancel)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | id | The ID content item to delete. |
| CancellationToken | cancel | The cancellation token to obey. |
Returns
| Type | Description |
|---|---|
| Task<IResult> | The results of the deletion. |