2 writes to SslProtocols
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\ConfigurationReader.cs (1)
110
SslProtocols
= ParseSslProcotols(endpointConfig.GetSection(SslProtocolsKey)),
TlsConfigurationLoader.cs (1)
59
endpoint.
SslProtocols
= configurationReader.EndpointDefaults.SslProtocols;
6 references to SslProtocols
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\ConfigurationReader.cs (4)
223
if (endpoint.
SslProtocols
.HasValue)
306
(
SslProtocols
?? System.Security.Authentication.SslProtocols.None) == (other.
SslProtocols
?? System.Security.Authentication.SslProtocols.None) &&
313
Protocols ?? ListenOptions.DefaultHttpProtocols,
SslProtocols
?? System.Security.Authentication.SslProtocols.None,
TlsConfigurationLoader.cs (2)
52
if (endpoint.
SslProtocols
.HasValue)
54
httpsOptions.SslProtocols = endpoint.
SslProtocols
.Value;