With ASP.NET to ASP.NET Core lot of things has changed. ASP.NET had a request processing pipeline with lots of events such as BeginRequest, EndRequest etc. With Core the architecture was changed.
This is how ASP.NET Core application is initialized
ASP.NET Core now has the concept of Middlewares. You can have many middlewares as you need and each of them will execute one after the other.
This is how ASP.NET Core application is initialized
ASP.NET Core now has the concept of Middlewares. You can have many middlewares as you need and each of them will execute one after the other.
0 comments:
Post a Comment