I need to call a few webservices while constructing an MVC page, so I'm threading the work via the threadpool, and using ManualResetEvents to to determine when I have my results.
If one of the threads throws an exception though, it'll crash the app. I have exception handling set up via a Filter, but I need to get the exception back to the primary rendering thread first.
I can't use BackgroundWorker, because I need to 'join' the work, and render the page.
Suggestions? Anyone?