c# Programming Glossary: this.pendingtask
A pattern for self-cancelling and restarting task http://stackoverflow.com/questions/18999827/a-pattern-for-self-cancelling-and-restarting-task to throw as the task is wrapped with ContinueWith await this.pendingTask newCts.Token.ThrowIfCancellationRequested var newTask SpellcheckAsyncHelper.. var newTask SpellcheckAsyncHelper newCts.Token this.pendingTask newTask.ContinueWith t this.pendingTask null we don't need.. newCts.Token this.pendingTask newTask.ContinueWith t this.pendingTask null we don't need to know the result here just log the status..
|