-
-
Notifications
You must be signed in to change notification settings - Fork 5
ArchiveListAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Archive a List
Up can get an archived list back with
ReOpenListAsync
/// <summary>
/// Archive a List
/// </summary>
/// <param name="listId">The id of list that should be Archived</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Archived List</returns>
public async Task<List> ArchiveListAsync(string listId, CancellationToken cancellationToken = default) {...}var listId = "63d1239e857afaa8b003c633";
List list = await _trelloClient.ArchiveListAsync(listId);If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')