次のテストコードがあります。
void Button_Click(object sender, RoutedEventArgs e)
{
var source = new CancellationTokenSource();
var tsk1 = new Task(() => Thread1(source.Token), source.Token);
var tsk2 = new Task(() => Thread2(source.Token), source.Token);
tsk1.Start();
tsk2.Start();
source.Cancel();
try
{
Task.WaitAll(new[] {tsk1, tsk2});
}
catch (Exception ex)
{
// here exception is caught
}
}
void Thread1(CancellationToken token)
{
Thread.Sleep(2000);
// If the following line is enabled, the result is the same.
// token.ThrowIfCancellationRequested();
}
void Thread2(CancellationToken token)
{
Thread.Sleep(3000);
}
スレッド メソッドでは例外をスローしませんが、タスクを開始する外部コードのブロックにTaskCanceledException
入ります。try-catch
なぜこれが起こるのかtoken.ThrowIfCancellationRequested();
、この場合の目的は何ですか。token.ThrowIfCancellationRequested();
スレッドメソッドを呼び出した場合にのみ、例外がスローされるべきだと思います。