Ad

Search This Blog

Friday, December 30, 2022

Lifecycle of an ASP.NET MVC 5 Application

MSDotnet Stack
A high-level view of the MVC application lifecycle, where you can understand the major stages that every MVC application passes through in the request processing pipeline.
A detail view that shows drills down into the details of the request processing pipeline. You can compare the high-level view and the detail view to see how the lifecycles details are collected into the various stages.
Placement and purpose of all overridable methods on the Controller object in the request processing pipeline. You may or may not have the need to override any one method, but it is important for you to understand their role in the application lifecycle so that you can write code at the appropriate life cycle stage for the effect you intend.
Blown-up diagrams showing how each of the filter types (authentication, authorization, action, and result) is invoked.
Download Lifecycle of an ASP.NET MVC 5 .pdf file
All source collected from https://learn.microsoft.com/en-us/aspnet/mvc/overview/getting-started/lifecycle-of-an-aspnet-mvc-5-application

No comments:

Post a Comment