码迷,mamicode.com
首页 > 编程语言 > 详细

SSL 链接安全协议的enum

时间:2018-07-03 20:04:01      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:toc   sdn   man   需要   protoc   epo   col   details   poi   

摘自:https://blog.csdn.net/lan_liang/article/details/70948221

在进行HTTPS连接时,需要指定SecurityProtocol。对于.NET 4.0的代码,需要强制转换。

...

System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType) 192 |
(SecurityProtocolType) 768 |
(SecurityProtocolType) 3072;
...


在 .net 4.5以上的代码使用以下代码即可。

System.Net.ServicePointManager.SecurityProtocol =
System.Net.SecurityProtocolType.Ssl3
| System.Net.SecurityProtocolType.Tls12
| SecurityProtocolType.Tls11
| SecurityProtocolType.Tls;

SSL 链接安全协议的enum

标签:toc   sdn   man   需要   protoc   epo   col   details   poi   

原文地址:https://www.cnblogs.com/tsql/p/9260084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!