2 writes to ClientHelloInfo
Microsoft.AspNetCore.Server.Kestrel.Core (2)
HttpsConfigurationService.cs (1)
167ClientHelloInfo = context.ClientHelloInfo,
Middleware\HttpsConnectionMiddleware.cs (1)
451ClientHelloInfo = clientHelloInfo,
3 references to ClientHelloInfo
Certificate.Optional.Sample (1)
Program.cs (1)
40if (connectionContext.ClientHelloInfo.ServerName.Equals(HostWithoutCert, StringComparison.OrdinalIgnoreCase))
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\SniOptionsSelector.cs (1)
182var (options, clientCertificateMode) = sniOptionsSelector.GetOptions(callbackContext.Connection, callbackContext.ClientHelloInfo.ServerName);
ListenOptionsHttpsExtensions.cs (1)
235OnConnection = context => serverOptionsSelectionCallback(context.SslStream, context.ClientHelloInfo, context.State, context.CancellationToken),