Skip to content

GetBoardsCurrentTokenCanAccessAsync

Rasmus Wulff Jensen edited this page Nov 1, 2023 · 4 revisions

Back to Board Features

Get the Boards that the token provided to the TrelloClient can Access

Signature

/// <summary>
/// Get the Boards that the token provided to the TrelloClient can Access
/// </summary>
/// <returns>The Active Boards there is access to</returns>
public async Task<List<Board>> GetBoardsCurrentTokenCanAccessAsync(CancellationToken cancellationToken = default) {...}

Examples

List<Board> boardsForTokenMember = await _trelloClient.GetBoardsCurrentTokenCanAccessAsync();
Clone this wiki locally