If I start an asynchronous task inside an MVC3 Controller action, and then return immediately, is the HttpContext scope until the next Garbage Collection call, or does it wait until the asynchronous task completes before it is garbage collected.
If I start an asynchronous task inside an MVC3 Controller action, and then return
Share
The objects are
Disposed (not garbage collected) at the end of the request.