7 writes to EnabledSslProtocols
System.Net.Http (2)
src\runtime\src\libraries\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs (1)
28EnabledSslProtocols = options.EnabledSslProtocols,
System\Net\Http\HttpClientHandler.cs (1)
344_underlyingHandler.SslOptions.EnabledSslProtocols = value;
System.Net.Mail (1)
System\Net\Mail\SmtpConnection.cs (1)
170EnabledSslProtocols = (SslProtocols)ServicePointManager.SecurityProtocol, // enums use same values
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1770handler.SslOptions.EnabledSslProtocols = (SslProtocols)parameters.SslProtocols;
System.Net.Security (3)
System\Net\Security\SslStream.cs (3)
253EnabledSslProtocols = enabledSslProtocols, 328EnabledSslProtocols = enabledSslProtocols, 390EnabledSslProtocols = enabledSslProtocols,
3 references to EnabledSslProtocols
System.Net.Http (2)
src\runtime\src\libraries\Common\src\System\Net\Security\SslClientAuthenticationOptionsExtensions.cs (1)
28EnabledSslProtocols = options.EnabledSslProtocols,
System\Net\Http\HttpClientHandler.cs (1)
340get => _underlyingHandler.SslOptions.EnabledSslProtocols;
System.Net.Security (1)
System\Net\Security\SslAuthenticationOptions.cs (1)
50EnabledSslProtocols = FilterOutIncompatibleSslProtocols(sslClientAuthenticationOptions.EnabledSslProtocols);