当我请求该页面时。为什么无法在文件startup.cs中的configure方法中进行调试?
配置方法仅在应用程序启动时运行一次吗?
答案 0 :(得分:1)
是的,ASP.NET Core应用程序的Startup类中的Configure方法在应用程序启动时执行一次。它配置了控制您的应用如何响应HTTP请求的中间件组件。
有关此方法的更多信息,请参见:https://docs.microsoft.com/en-us/aspnet/core/fundamentals/startup?view=aspnetcore-2.1
这是ASP.NET Core启动过程的很好概述:https://developer.telerik.com/featured/understanding-asp-net-core-initialization/