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