-
Notifications
You must be signed in to change notification settings - Fork 4
RemoveCoverFromCardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
Remove a cover from a Card
/// <summary>
/// Remove a cover from a Card
/// </summary>
/// <param name="cardId">Id of Card</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Card with the removed Cover</returns>
public async Task<Card> RemoveCoverFromCardAsync(string cardId, CancellationToken cancellationToken = default) {...}
var cardId = "63c939a5cea0cb006dc9e9dd";
await _trelloClient.RemoveCoverFromCardAsync(cardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')