-
-
Notifications
You must be signed in to change notification settings - Fork 5
ArchiveAllCardsInListAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
5 revisions
Archive all cards on in a List
/// <summary>
/// Archive all cards on in a List
/// </summary>
/// <param name="listId">The id of the List that should have its cards archived</param>
/// <param name="cancellationToken">Cancellation Token</param>
public async Task ArchiveAllCardsInListAsync(string listId, CancellationToken cancellationToken = default) {...}string idOfListYouWishToArchiveAllcardsOn = "53c93955ceaa0cb006dc3e9dd";
await _trelloClient.ArchiveAllCardsInListAsync(idOfListYouWishToArchiveAllcardsOn);If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')