From 399a360bad8ad9d946bbb711acb44e3a940d9c3c Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Thu, 26 Dec 2019 07:04:19 -0600 Subject: [PATCH] Fix example code highlight (#16317) --- aspnetcore/fundamentals/servers/kestrel.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/fundamentals/servers/kestrel.md b/aspnetcore/fundamentals/servers/kestrel.md index e4105c7ff3..7c6563cf61 100644 --- a/aspnetcore/fundamentals/servers/kestrel.md +++ b/aspnetcore/fundamentals/servers/kestrel.md @@ -5,7 +5,7 @@ description: Learn about Kestrel, the cross-platform web server for ASP.NET Core monikerRange: '>= aspnetcore-2.1' ms.author: riande ms.custom: mvc -ms.date: 12/18/2019 +ms.date: 12/26/2019 uid: fundamentals/servers/kestrel --- # Kestrel web server implementation in ASP.NET Core @@ -647,7 +647,7 @@ webBuilder.ConfigureKestrel(serverOptions => The method binds to a TCP socket, and an options lambda permits X.509 certificate configuration: -[!code-csharp[](kestrel/samples/3.x/KestrelSample/Program.cs?name=snippet_TCPSocket&highlight=9-16)] +[!code-csharp[](kestrel/samples/3.x/KestrelSample/Program.cs?name=snippet_TCPSocket&highlight=12-18)] The example configures HTTPS for an endpoint with . Use the same API to configure other Kestrel settings for specific endpoints.