private void Start() { tokenSource = new CancellationTokenSource(); var token = tokenSource.Token; source.ExecuteAsync(token); }
private async Task Start() { await source.ExecuteAsync(new CancellationToken(false)); }