Nick

Results 1 comments of Nick

Hi! The couse for this problem is the code below: ``` private void StartPolling(CancellationToken cancellationToken) { Task.Factory.StartNew(async () => { while (!cancellationToken.IsCancellationRequested) { try { await _httpTransport.GetAsync(_httpUri, CancellationToken.None).ConfigureAwait(false); } catch...