赞
踩
C#:请求被中止:未能创建SSL/TLS安全通道
问题:
C#: 请求被中止: 未能创建 SSL/TLS 安全通道
解决办法
第一种
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
第二种
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3
| SecurityProtocolType.Tls
| (SecurityProtocolType)0x300 //Tls11
| (SecurityProtocolType)0xC00; //Tls12
第一种 亲测有效
-- 刘轶鹤
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。