6 writes to t_currentTask
mscorlib (6)
system\threading\Tasks\Task.cs (3)
2756ExecuteWithThreadLocal(ref t_currentTask); 3616AwaitTaskContinuation.RunOrScheduleAction(singleAction, bCanInlineContinuations, ref t_currentTask); 3692AwaitTaskContinuation.RunOrScheduleAction(ad, bCanInlineContinuations, ref t_currentTask);
system\threading\Tasks\TaskContinuation.cs (3)
419RunCallback(GetInvokeActionCallback(), m_action, ref Task.t_currentTask); 430RunCallback(GetPostActionCallback(), this, ref Task.t_currentTask); 614RunCallback(GetInvokeActionCallback(), m_action, ref Task.t_currentTask); // any exceptions from m_action will be handled by s_callbackRunAction
3 references to t_currentTask
mscorlib (3)
system\threading\Tasks\Task.cs (1)
1360get { return t_currentTask; }
system\threading\Tasks\TaskContinuation.cs (2)
749Contract.Assert(currentTask == Task.t_currentTask); 796Contract.Assert(currentTask == Task.t_currentTask);