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