| c# Programming Glossary: taskscheduler.currentIs 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  the TaskFactory which in the case of Task.Factory targets TaskScheduler.Current. This means if you call Task.Factory.StartNew from within a.. 
 Is there a Task based replacement for System.Threading.Timer? http://stackoverflow.com/questions/4890915/is-there-a-task-based-replacement-for-system-threading-timer  wrapperAction cancelToken attachedToParent TaskScheduler.Current if cancelToken.IsCancellationRequested intervalInMilliseconds.. mainAction cancelToken TaskCreationOptions.LongRunning TaskScheduler.Current  summary Mains the periodic task action. summary param name.. wrapperAction cancelToken subTaskCreationOptions TaskScheduler.Current  if synchronous    stopWatch.Start  try    subTask.Wait cancelToken.. 
 C# 5 Async/Await - is it *concurrent*? http://stackoverflow.com/questions/7663101/c-sharp-5-async-await-is-it-concurrent  as SynchronizationContext.Current if it is non null or TaskScheduler.Current if there's no SynchronizationContext . You can override this.. 
 Is Async await keyword equivalent to a ContinueWith lambda? http://stackoverflow.com/questions/8767218/is-async-await-keyword-equivalent-to-a-continuewith-lambda  if it exists falling back on TaskScheduler.Current . The continuation is then run on the scheduling context. So.. into ContinueWith falling back on TaskScheduler.Current if necessary. The actual async await implementation is based.. 
 |