1 write to ServerName
System.Net.Security (1)
System\Net\Security\SslClientHelloInfo.cs (1)
18
ServerName
= serverName;
7 references to ServerName
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\SniOptionsSelector.cs (1)
182
var (options, clientCertificateMode) = sniOptionsSelector.GetOptions(callbackContext.Connection, callbackContext.ClientHelloInfo.
ServerName
);
Middleware\HttpsConnectionMiddleware.cs (1)
474
feature.HostName = clientHelloInfo.
ServerName
;
System.Net.Quic (1)
System\Net\Quic\QuicListener.cs (1)
247
await connection.FinishHandshakeAsync(options, clientHello.
ServerName
, cancellationToken).ConfigureAwait(false);
System.Net.Security (4)
System\Net\Security\TlsSession.cs (2)
923
if (!string.IsNullOrEmpty(parsed.Value.
ServerName
))
925
_sessionTargetHost = parsed.Value.
ServerName
;
System\Net\Security\TlsSession.OpenSsl.cs (2)
162
if (!string.IsNullOrEmpty(parsed.Value.
ServerName
))
164
_sessionTargetHost = parsed.Value.
ServerName
;