| c# Programming Glossary: task.runHow to cancel a Task in await? http://stackoverflow.com/questions/10134310/how-to-cancel-a-task-in-await  source.CancelAfter TimeSpan.FromSeconds 1 Task int task Task.Run slowFunc 1 2 source.Token source.Token A canceled task will.. 
 Retry a task multiple times based on user input in case of an exception in task http://stackoverflow.com/questions/10490307/retry-a-task-multiple-times-based-on-user-input-in-case-of-an-exception-in-task  T func int retryCount  while true  try   var result await Task.Run func  return result  catch   if retryCount 0  throw  retryCount.. Retry T Func T func int retryCount  try  var result await Task.Run func return result  catch  if retryCount 0  throw  return await.. 
 Using async without await http://stackoverflow.com/questions/12016567/using-async-without-await  'await' operator to await non blocking API calls or 'await Task.Run ... ' to do CPU bound work on a background thread. something.cs.. 
 Is Task.Factory.StartNew() guaranteed to use another thread than the calling thread? http://stackoverflow.com/questions/12245935/is-task-factory-startnew-guaranteed-to-use-another-thread-than-the-calling-thr  pass TaskScheduler.Default to the StartNew call use Task.Run which always goes to TaskScheduler.Default or use a TaskFactory.. 
 How do I log ALL exceptions globally for a C# MVC4 WebAPI app? http://stackoverflow.com/questions/15167927/how-do-i-log-all-exceptions-globally-for-a-c-sharp-mvc4-webapi-app   if baseException is BusinessException   return Task.Run HttpResponseMessage new HttpResponseMessage HttpStatusCode.InternalServerError..  Log critical error  Debug.WriteLine baseException  return Task.Run HttpResponseMessage new HttpResponseMessage HttpStatusCode.InternalServerError.. 
 Why is HttpContext.Current null? http://stackoverflow.com/questions/18383923/why-is-httpcontext-current-null  new ArgumentException HttpContext.Current is null await Task.Run Task.Delay 500 id 3 x HttpContext.Current if x null  thrown.. 
 Async/await not reacting as expected http://stackoverflow.com/questions/7892360/async-await-not-reacting-as-expected  Finished private static Task DoSomething  var ret Task.Run   for int i 1 i 10 i   Thread.Sleep 100   return ret   c# android.. private static Task DoSomething Console.WriteLine E return Task.Run  Console.WriteLine F  for int i 1 i 10 i   Thread.Sleep 100.. 
 |