Skip to content
This repository has been archived by the owner on Sep 21, 2018. It is now read-only.

Commit

Permalink
Improve comment in Startup.cs for IISPlatformHandler
Browse files Browse the repository at this point in the history
Fixes #200
  • Loading branch information
phenning committed Oct 21, 2015
1 parent 28b74da commit a980029
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/BaseTemplates/EmptyWeb/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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) =>
Expand Down
2 changes: 1 addition & 1 deletion src/BaseTemplates/StarterWeb/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/BaseTemplates/WebAPI/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/StarterWeb/AI/IndividualAuth/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/StarterWeb/AI/NoAuth/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/StarterWeb/IndividualAuth/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/StarterWeb/OrganizationalAuth/Single/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Rules/WebAPI/AI/NoAuth/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a980029

Please sign in to comment.