2 types derived from AwaitTaskContinuation
mscorlib (2)
system\threading\Tasks\TaskContinuation.cs (2)
385internal sealed class SynchronizationContextAwaitTaskContinuation : AwaitTaskContinuation 481internal sealed class TaskSchedulerAwaitTaskContinuation : AwaitTaskContinuation
2 instantiations of AwaitTaskContinuation
mscorlib (2)
system\threading\Tasks\Task.cs (1)
3006tc = new AwaitTaskContinuation(continuationAction, flowExecutionContext: true, stackMark: ref stackMark);
system\threading\Tasks\TaskContinuation.cs (1)
827AwaitTaskContinuation atc = new AwaitTaskContinuation(action, flowExecutionContext: false);
4 references to AwaitTaskContinuation
mscorlib (4)
system\threading\Tasks\Task.cs (3)
3021AwaitTaskContinuation.UnsafeScheduleAction(continuationAction, this); 3616AwaitTaskContinuation.RunOrScheduleAction(singleAction, bCanInlineContinuations, ref t_currentTask); 3692AwaitTaskContinuation.RunOrScheduleAction(ad, bCanInlineContinuations, ref t_currentTask);
system\threading\Tasks\TaskContinuation.cs (1)
827AwaitTaskContinuation atc = new AwaitTaskContinuation(action, flowExecutionContext: false);