ContinueWith
本身不能直接捕獲異常,但它可以與 Task
的異常處理一起使用。當你在一個 Task
上調用 ContinueWith
時,如果在之前的 Task
中發生了異常,那么這個異常會被存儲在返回的 Task
中。你可以使用 await
關鍵字或者 Task.Wait()
方法來捕獲并處理這個異常。
下面是一個示例:
using System;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
try
{
await Task.Run(() =>
{
// 這里故意拋出一個異常
throw new InvalidOperationException("An error occurred.");
}).ContinueWith(t =>
{
// 這里可以處理異常
if (t.IsFaulted)
{
Console.WriteLine("An exception occurred: " + t.Exception);
}
});
}
catch (Exception ex)
{
Console.WriteLine("Caught exception: " + ex.Message);
}
}
}
在這個示例中,我們首先創建了一個 Task
,它會拋出一個異常。然后我們使用 ContinueWith
來處理這個異常。如果 ContinueWith
中的 Task
是故障的(即發生了異常),我們可以使用 t.IsFaulted
屬性來檢查這一點,并使用 t.Exception
屬性來獲取異常信息。