下面的Test_Click
是在UI线程(带有WindowsFormsSynchronizationContext)上运行的代码的简化版本:
void Test_Click(object sender, EventArgs e)
{
var task = DoNavigationAsync();
task.ContinueWith((t) =>
{
MessageBox.Show("Navigation done!");
}, TaskScheduler.FromCurrentSynchronizationContext());
}
我是否应该明确指定
TaskScheduler.FromCurrentSynchronizationContext()
以确保继续操作将在同一UI线程上执行?还是ContinueWith
自动捕获执行上下文(因此,在这种情况下,使TaskScheduler
参数变得多余)?我认为默认情况下它不执行此操作(与
await
不同),但是到目前为止,我找不到在线资源来确认这一点。 最佳答案
默认情况下,它不使用当前同步上下文,而是使用TaskScheduler.Current
,如以下反编译代码所示:
public Task ContinueWith(Action<Task<TResult>> continuationAction)
{
StackCrawlMark stackMark = StackCrawlMark.LookForMyCaller;
return this.ContinueWith(continuationAction, TaskScheduler.Current, new CancellationToken(), TaskContinuationOptions.None, ref stackMark);
}
TaskScheduler.Current
是TaskScheduler.Default
或当前任务的TaskScheduler(如果该任务是子任务)。如果您不想碰到weird problems,请始终指定任务计划程序,或者,如果可以,请使用await
更好。关于c# - Task.ContinueWith是否捕获要继续的调用线程上下文?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18312695/