下面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
),但到目前为止我找不到在线资源来确认这一点。