View On GitHub
reading-notes
Reading Notes for Codefellows!
Project maintained by
AlanYHung
Hosted on GitHub Pages — Theme by
mattgraham
Code 401 ASP.NET
Reading 14
(All My Notes are attributed/sourced from the Resources directly preceding them.)
Summary
Routing is the handling of incoming HTTP requests and dispatching the requests to the correct endpoints in an application.
In ASP.NET Routing is registered in the middleware pipeline of Startup.Configure.
Endpoints are something that can be selected via matching url and http methods and then executed via running delegates.
Resources
ASP.NET MVC Routing Overview (C#)
Author: Microsoft Docs
Article Source
Routing in ASP.NET Core
Author: Microsoft Docs
Article Source
<– Back