To this place , there, information on changes in Core is as follows.
public void Configure(IApplicationBuilder app, ILoggerFactory loggerfactory) { ... // Remove call to app.UseIISPlatformHandler(); This is handled by UseIIS in Main. // Remove call to app.UseForwardedHeaders(); This is handled by UseIIS in Main. ... }
However, when checking the contents of a method, there is no such call as UseIIS (). Closest to UseIISIntegration (), but he commented as if it replaces UseForwardedHeaders ().
public static void Main(string[] args) { var host = new WebHostBuilder() .UseDefaultConfiguration(args) .UseServer("Microsoft.AspNetCore.Server.Kestrel")
What? I do not understand?
source share