In which method of the Startup.cs file is routing typically configured in an ASP.NET Core MVC application?

  • ConfigureServices
  • ConfigureAuthentication
  • ConfigureRoutes
  • Configure
Routing in an ASP.NET Core MVC application is typically configured in the Configure method of the Startup.cs file. This method sets up the request processing pipeline, including routing rules for different URL patterns.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *