C#4.0 HTTP协议无法使用TLS1.2的问题

在发送HTTP请求前加入下行代码

ServicePointManager.SecurityProtocol = (SecurityProtocolType) | (SecurityProtocolType) | (SecurityProtocolType);

如果是4.5以上版本可以直接使用

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;

  

上一篇:SELECT INTO 和 INSERT INTO区别


下一篇:java学习之IO文件分割