A call to Controller.OnActionExecuted is made.
See this post on MSDN, it covers the controller pipeline for MVC.
- Get the first request for the application
- Routing Execution
- Create MVC Request Handler
- Create controller
- Run controller
- Trigger action
- Execution result
source
share