c# Programming Glossary: spellcheckasync
A pattern for self-cancelling and restarting task http://stackoverflow.com/questions/18999827/a-pattern-for-self-cancelling-and-restarting-task CancellationTokenSource cts null CTS for pending session SpellcheckAsync is called by the client app public async Task bool SpellcheckAsync.. is called by the client app public async Task bool SpellcheckAsync CancellationToken token SpellcheckAsync can be re entered var.. async Task bool SpellcheckAsync CancellationToken token SpellcheckAsync can be re entered var previousCts this.cts var newCts CancellationTokenSource.CreateLinkedTokenSource..
|