diff --git a/src/BaseTemplates/EmptyWeb/Startup.cs b/src/BaseTemplates/EmptyWeb/Startup.cs index f762d24d..61a585e4 100644 --- a/src/BaseTemplates/EmptyWeb/Startup.cs +++ b/src/BaseTemplates/EmptyWeb/Startup.cs @@ -17,7 +17,7 @@ public void ConfigureServices(IServiceCollection services) public void Configure(IApplicationBuilder app) { - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); app.Run(async (context) => diff --git a/src/BaseTemplates/StarterWeb/Startup.cs b/src/BaseTemplates/StarterWeb/Startup.cs index 8df05a42..0d8765d4 100644 --- a/src/BaseTemplates/StarterWeb/Startup.cs +++ b/src/BaseTemplates/StarterWeb/Startup.cs @@ -58,7 +58,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Add static files to the request pipeline. diff --git a/src/BaseTemplates/WebAPI/Startup.cs b/src/BaseTemplates/WebAPI/Startup.cs index 4d566166..8a54df91 100644 --- a/src/BaseTemplates/WebAPI/Startup.cs +++ b/src/BaseTemplates/WebAPI/Startup.cs @@ -32,7 +32,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF loggerFactory.AddConsole(); loggerFactory.AddDebug(); - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Configure the HTTP request pipeline. diff --git a/src/Rules/StarterWeb/AI/IndividualAuth/Startup.cs b/src/Rules/StarterWeb/AI/IndividualAuth/Startup.cs index 8285336d..5c9f9c09 100644 --- a/src/Rules/StarterWeb/AI/IndividualAuth/Startup.cs +++ b/src/Rules/StarterWeb/AI/IndividualAuth/Startup.cs @@ -102,7 +102,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Track data about exceptions from the application. Should be configured after all error handling middleware in the request pipeline. diff --git a/src/Rules/StarterWeb/AI/NoAuth/Startup.cs b/src/Rules/StarterWeb/AI/NoAuth/Startup.cs index 3f53b375..29779e2d 100644 --- a/src/Rules/StarterWeb/AI/NoAuth/Startup.cs +++ b/src/Rules/StarterWeb/AI/NoAuth/Startup.cs @@ -70,7 +70,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Track data about exceptions from the application. Should be configured after all error handling middleware in the request pipeline. diff --git a/src/Rules/StarterWeb/AI/OrganizationalAuth/Multiple/Startup.cs b/src/Rules/StarterWeb/AI/OrganizationalAuth/Multiple/Startup.cs index 15d30bc6..08c86131 100644 --- a/src/Rules/StarterWeb/AI/OrganizationalAuth/Multiple/Startup.cs +++ b/src/Rules/StarterWeb/AI/OrganizationalAuth/Multiple/Startup.cs @@ -80,7 +80,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Track data about exceptions from the application. Should be configured after all error handling middleware in the request pipeline. diff --git a/src/Rules/StarterWeb/AI/OrganizationalAuth/Single/Startup.cs b/src/Rules/StarterWeb/AI/OrganizationalAuth/Single/Startup.cs index efd35683..3860cccb 100644 --- a/src/Rules/StarterWeb/AI/OrganizationalAuth/Single/Startup.cs +++ b/src/Rules/StarterWeb/AI/OrganizationalAuth/Single/Startup.cs @@ -79,7 +79,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Track data about exceptions from the application. Should be configured after all error handling middleware in the request pipeline. diff --git a/src/Rules/StarterWeb/IndividualAuth/Startup.cs b/src/Rules/StarterWeb/IndividualAuth/Startup.cs index 6286d447..0f1b3b80 100644 --- a/src/Rules/StarterWeb/IndividualAuth/Startup.cs +++ b/src/Rules/StarterWeb/IndividualAuth/Startup.cs @@ -92,7 +92,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Add static files to the request pipeline. diff --git a/src/Rules/StarterWeb/OrganizationalAuth/Multiple/Startup.cs b/src/Rules/StarterWeb/OrganizationalAuth/Multiple/Startup.cs index d485c46e..b8c6ded6 100644 --- a/src/Rules/StarterWeb/OrganizationalAuth/Multiple/Startup.cs +++ b/src/Rules/StarterWeb/OrganizationalAuth/Multiple/Startup.cs @@ -71,7 +71,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Add static files to the request pipeline. diff --git a/src/Rules/StarterWeb/OrganizationalAuth/Single/Startup.cs b/src/Rules/StarterWeb/OrganizationalAuth/Single/Startup.cs index 6474a7f9..ca6c9aa9 100644 --- a/src/Rules/StarterWeb/OrganizationalAuth/Single/Startup.cs +++ b/src/Rules/StarterWeb/OrganizationalAuth/Single/Startup.cs @@ -70,7 +70,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF app.UseExceptionHandler("/Home/Error"); } - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Add static files to the request pipeline. diff --git a/src/Rules/WebAPI/AI/NoAuth/Startup.cs b/src/Rules/WebAPI/AI/NoAuth/Startup.cs index 841e3c59..351db038 100644 --- a/src/Rules/WebAPI/AI/NoAuth/Startup.cs +++ b/src/Rules/WebAPI/AI/NoAuth/Startup.cs @@ -52,7 +52,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF loggerFactory.AddConsole(); loggerFactory.AddDebug(); - // Add the platform handler to the request pipeline. + // Adds middleware to the request pipeline for forwarding Windows Authentication, request scheme, remote IPs, etc to the IIS HttpPlatformHandler.. app.UseIISPlatformHandler(); // Add Application Insights to the request pipeline to track HTTP request telemetry data.