does AsyncCallback get invoked when there is exception thrown at the worker thread
问题 I'm new to .net asynchronous programming(Asynchronous Programming Model), just have two questions on the relationship of worker thread and exceptions. Below is an example: private void OnPerformSearch(object sender, RoutedEventArgs e) { WebRequest req = WebRequest.Create("http://www.google.com/#q=weather"); req.BeginGetResponse(new AsyncCallback(Callback), req); // here the main thread calls BeginGetResponse() to enqueues the work in threadpool then a worker thread A will get the job done ...