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