URL Routing and Features
URL Routing and Features
- The Routing is the Process by which ASP.NET Core inspects the incoming URLs and maps them to Controller Actions.
- It also used to generate the outgoing URLs.
- This process is handled by the Routing Middleware.
- The Routing Middleware is available in Microsoft.AspNetCore.Routing Namespace.
• The Routing has two main responsibilities:
1. It maps the incoming requests to the Controller Action
2. Generate an outgoing URLs that correspond to Controller actions.
Comments
Post a Comment