How Routing works in ASP.NET MVC Core?
How Routing works in ASP.NET MVC Core
. When the Request arrives at the Routing Middleware it does the following.
1. It Parses the URL.
2. Searches for the Matching Route in the RouteCollection.
3. If the Route is found then it passes the control to RouteHandler.
4. If Route is not found, it gives up and invokes the next Middleware.
Comments
Post a Comment