I\'m going through a big refactoring / speed tweaking of one of my larger MVC apps. It has been deployed to production for a few months now, and I was starting to get timeo
Dispose is called after the view is rendered, always.
The view is rendered in the call to ActionResult.ExecuteResult. That's called (indirectly) by ControllerActionInvoker.InvokeAction, which is in turn called by ControllerBase.ExecuteCore.
Since the controller is in the call stack when the view is rendered, it cannot be disposed then.