public class HomeController : Controller
{
public ActionResult Index()
{
Task<string> t = DownloadStringTaskAsync(new Uri("http://www.google.com/search?q=aspnet"));
t.Wait();
string res = t.Result;
return View((object)res);
}
Task<string> DownloadStringTaskAsync(Uri address)
{
TaskCompletionSource<string> tcs = new TaskCompletionSource<string>();
WebClient wc = new WebClient();
wc.DownloadStringCompleted += (s, e) => tcs.SetResult(e.Result);
wc.DownloadStringAsync(address);
return tcs.Task;
}
}
アクションは返されず、リクエストは単にタイムアウトします。
すべての非同期操作に TPL タスクを使用しており、フレームワーク 4.5 に切り替えるまで、WebClient のメソッドの一部をラップする必要がありました。
上記のメソッドDownloadStringTaskAsync
は、これらのラッパーの 1 つの単純化されたバージョンです。
私が理解できないのは、タスクを待機すると aspnet のスレッドがデッドロックし、コンソールまたはデスクトップ アプリケーションで正常に動作する理由です。
デッドロックされたスレッドは次のようになります。
リクエストスレッド
[スリープ中、待機中、参加中]
mscorlib.dll!System.Threading.Monitor.Wait(object obj, int millisecondsTimeout, bool exitContext) + 0x18 バイト mscorlib.dll!System.Threading.ManualResetEventSlim.Wait(int millisecondsTimeout, System .Threading.CancellationToken cancelToken) + 0x264 バイト
mscorlib.dll!System.Threading.Tasks.Task.InternalWait(int ミリ秒タイムアウト、System.Threading.CancellationToken cancelToken) + 0x166 バイトint millisecondsTimeout, System.Threading.CancellationToken cancelToken) + 0x41 バイト
mscorlib.dll!System.Threading.Tasks.Task.Wait() + 0xb バイト
TCSProblem.DLL!TCSProblem.Controllers.HomeController.Index() 16 行目 + 0xa バイトWebClient スレッド
[スリープ中、待機中、または参加中]
mscorlib.dll!System.Threading.Monitor.Enter(object obj, ref bool lockTaken) + 0x14 バイト
System.Web.dll!System.Web.AspNetSynchronizationContext.CallCallback(System.Threading. SendOrPostCallback コールバック、オブジェクト状態) + 0x53 バイト
System.Web.dll!System.Web.AspNetSynchronizationContext.Post(System.Threading.SendOrPostCallback コールバック、オブジェクト状態) + 0x9 バイト
System.dll!System.ComponentModel.AsyncOperation.Post(System. Threading.SendOrPostCallback d、オブジェクト arg) + 0x29 バイト
System.dll!System.Net.WebClient.PostProgressChanged(System.ComponentModel.AsyncOperation asyncOp、System.Net.WebClient.ProgressData 進行状況) + 0x25c バイト