| c# Programming Glossary: taskcreationoptions.attachedtoparentUnobservedTaskException being throw but it is handled by a TaskScheduler.UnobservedTaskException handler and a continuations OnlyOnFaulted handler [duplicate] http://stackoverflow.com/questions/11831844/unobservedtaskexception-being-throw-but-it-is-handled-by-a-taskscheduler-unobser  new TaskScheduled 0 Console.WriteLine cancelTaskCalled  TaskCreationOptions.AttachedToParent source.Token new TaskScheduled 2000   if source.IsCancellationRequested.. atp TaskCreationOptions.None if attachToParent atp TaskCreationOptions.AttachedToParent tsk CreateHandledTask action atp cancellationToken return tsk.. 
 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   Action mainAction  TaskCreationOptions attachedToParent TaskCreationOptions.AttachedToParent if cancelToken.IsCancellationRequested return if delayInMilliseconds..  TaskCreationOptions subTaskCreationOptions TaskCreationOptions.AttachedToParent periodicTaskCreationOptions CheckIfCancelled cancelToken if.. 
 Turning async socket Parallel and not only Concurrent in very intensive application using TPL http://stackoverflow.com/questions/5834755/turning-async-socket-parallel-and-not-only-concurrent-in-very-intensive-applicat      skttool.EndAccept     accept     skttool     TaskCreationOptions.AttachedToParent  accepetChunk.ContinueWith accept TaskContinuationOptions.NotOnFaulted.. accept TaskContinuationOptions.NotOnFaulted TaskCreationOptions.AttachedToParent  evtConnectionDone.WaitOne        void accept Task Socket accepetChunk..    state.buffer.Length state.bytesRead    null    TaskCreationOptions.AttachedToParent readChunk.ContinueWith read TaskContinuationOptions.NotOnFaulted.. 
 |