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