SSL 链接安全协议的enum
Posted tsql
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSL 链接安全协议的enum相关的知识,希望对你有一定的参考价值。
摘自: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的主要内容,如果未能解决你的问题,请参考以下文章