diff --git a/aspnetcore/fundamentals/servers/kestrel.md b/aspnetcore/fundamentals/servers/kestrel.md index e8da2aaccd..2455ba2211 100644 --- a/aspnetcore/fundamentals/servers/kestrel.md +++ b/aspnetcore/fundamentals/servers/kestrel.md @@ -155,6 +155,12 @@ The Kestrel web server has constraint configuration options that are especially Set constraints on the property of the class. The `Limits` property holds an instance of the class. +The following examples use the namespace: + +```csharp +using Microsoft.AspNetCore.Server.Kestrel.Core; +``` + ### Keep-alive timeout @@ -644,7 +650,7 @@ In the following *appsettings.json* example: "Url": "https://localhost:5002", "Certificate": { "Subject": "", - "Store": "", + "Store": "", "Location": "", "AllowInvalid": "" } @@ -677,7 +683,7 @@ An alternative to using **Path** and **Password** for any certificate node is to ```json "Default": { "Subject": "", - "Store": "", + "Store": "", "Location": "", "AllowInvalid": "" } diff --git a/aspnetcore/fundamentals/servers/kestrel/samples/2.x/KestrelSample/Startup.cs b/aspnetcore/fundamentals/servers/kestrel/samples/2.x/KestrelSample/Startup.cs index 3ac6b2ee5b..bee7dda619 100644 --- a/aspnetcore/fundamentals/servers/kestrel/samples/2.x/KestrelSample/Startup.cs +++ b/aspnetcore/fundamentals/servers/kestrel/samples/2.x/KestrelSample/Startup.cs @@ -9,7 +9,6 @@ using Microsoft.AspNetCore.Http.Extensions; using Microsoft.AspNetCore.Http.Features; using Microsoft.AspNetCore.Server.Kestrel.Core; using Microsoft.AspNetCore.Server.Kestrel.Core.Features; -using Microsoft.Extensions.Logging; namespace KestrelSample {