Ejemplo n.º 1
0
 /// <summary>
 /// Refreshes the organization membership 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(CancellationToken))
 {
     return(_context.Synchronize(force, ct));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Refreshes the organization membership 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);
 }