Guest User

Untitled

a guest
Jan 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var cancellationTokenSource = new CancellationTokenSource();
  2. var cancellationToken = cancellationTokenSource.Token;
  3.  
  4. Task.Delay(2000).ContinueWith(async (t) =>
  5. {
  6. //Do stuff
  7. }, cancellationToken);
Add Comment
Please, Sign In to add comment