最佳答案
我玩这些 Windows 8 WinRT 任务,我试图取消一个任务使用下面的方法,它的工作到一定程度。CancelNotification 方法会被调用,这会让您认为任务被取消了,但是在后台任务会继续运行,然后在任务完成之后,任务的状态总是被完成并且永远不会被取消。当任务被取消时,有没有办法完全停止它?
private async void TryTask()
{
CancellationTokenSource source = new CancellationTokenSource();
source.Token.Register(CancelNotification);
source.CancelAfter(TimeSpan.FromSeconds(1));
var task = Task<int>.Factory.StartNew(() => slowFunc(1, 2), source.Token);
await task;
if (task.IsCompleted)
{
MessageDialog md = new MessageDialog(task.Result.ToString());
await md.ShowAsync();
}
else
{
MessageDialog md = new MessageDialog("Uncompleted");
await md.ShowAsync();
}
}
private int slowFunc(int a, int b)
{
string someString = string.Empty;
for (int i = 0; i < 200000; i++)
{
someString += "a";
}
return a + b;
}
private void CancelNotification()
{
}