TPLで例外がどのように処理されるかを理解するのに問題があります。次のコードは私の問題を説明するはずです。
using System;
using System.Collections.Generic;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace WebDLApp
{
class Program
{
static void Main(string[] args)
{
TaskScheduler.UnobservedTaskException += TaskScheduler_UnobservedTaskException; // Not catching exception
List<string> sites = new List<string>{ "http://microsoft.com", "http://yahoo.com", "http://facebook.com", "http://amazon.com", "http://foooo", "http://aol.com", "http://ask.com", "http://wikipedia.org" };
List<Task<string>> tasks = new List<Task<string>>();
foreach (string site in sites)
{
tasks.Add(Task.Factory.StartNew<string>((wsite) =>
{
using (WebClient wc = new WebClient())
{
wc.DownloadString((string)wsite); // Thrown here, always
return (string)wsite;
}
}, site)
);
}
Task.WaitAll(tasks.ToArray()); // Can't catch here
int counter = 1;
foreach (var task in tasks)
{
Console.WriteLine(counter.ToString() + task.Result); // Can't catch here either
counter++;
}
Console.ReadLine();
}
static void TaskScheduler_UnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs e) // Never called
{
Console.WriteLine(e.Exception.Message);
e.SetObserved();
}
}
}
私が理解していることから、TaskScheduler.UnobservedTaskExceptionイベントオブジェクトを使用することは、トリッキーなサードパーティライブラリからの例外を処理するのに役立つ非常に良い方法です。ただし、例外は常にタスク内でスローされるようです。TaskScheduler(またはTaskExceptionsを処理する機能)によってキャッチされることは決してないように見えます。
コードを簡潔にするために、可能なtry / catchの場所を省略し、コメントでマークしました。
TaskScheduler_UnobservedTaskExceptionイベントハンドラーがコンソールに出力され、例外を監視することを期待しています。ただし、実行がタスクの結果に達すると、タスク内からWebExceptionがスローされます。