/// <summary> /// Refreshes the label data. /// </summary> /// <param name="force">Indicates that the refresh should ignore the value in <see cref="TrelloConfiguration.RefreshThrottle"/> and make the call to the API.</param> /// <param name="ct">(Optional) A cancellation token for async processing.</param> public Task Refresh(bool force = false, CancellationToken ct = default) { return(_context.Synchronize(force, ct)); }
/// <summary> /// Refreshes the label data. /// </summary> /// <param name="ct">(Optional) A cancellation token for async processing.</param> public async Task Refresh(CancellationToken ct = default(CancellationToken)) { await _context.Synchronize(ct); }