1 write to SslProtocols
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\ConfigurationReader.cs (1)
63SslProtocols = ParseSslProcotols(configSection.GetSection(SslProtocolsKey)),
5 references to SslProtocols
Microsoft.AspNetCore.Server.Kestrel.Core (3)
KestrelConfigurationLoader.cs (2)
255if (defaults.SslProtocols.HasValue) 257httpsOptions.SslProtocols = defaults.SslProtocols.Value;
TlsConfigurationLoader.cs (1)
59endpoint.SslProtocols = configurationReader.EndpointDefaults.SslProtocols;
Microsoft.AspNetCore.Server.Kestrel.Tests (2)
ConfigurationReaderTests.cs (2)
353Assert.Equal(SslProtocols.Tls11, endpoint.SslProtocols); 364Assert.Null(endpoint.SslProtocols);