8 references to SecurityProtocol
System.Net.HttpListener (1)
System\Net\Managed\HttpConnection.cs (1)
111
_sslStream?.AuthenticateAsServer(_cert, true, (SslProtocols)ServicePointManager.
SecurityProtocol
, false);
System.Net.Mail (2)
System\Net\Mail\SmtpConnection.cs (2)
170
EnabledSslProtocols = (SslProtocols)ServicePointManager.
SecurityProtocol
, // enums use same values
179
sslStream.AuthenticateAsClient(host, _clientCertificates, (SslProtocols)ServicePointManager.
SecurityProtocol
, ServicePointManager.CheckCertificateRevocationList);
System.Net.Requests (5)
System\Net\FtpControlStream.cs (4)
198
(SslProtocols)ServicePointManager.
SecurityProtocol
, // enums use same values
209
(SslProtocols)ServicePointManager.
SecurityProtocol
, // enums use same values
404
(SslProtocols)ServicePointManager.
SecurityProtocol
, // enums use same values
429
(SslProtocols)ServicePointManager.
SecurityProtocol
, // enums use same values
System\Net\HttpWebRequest.cs (1)
143
SslProtocols = ServicePointManager.
SecurityProtocol
;