1.原因
这是因为本地的 .net版本 低于4.6,但项目大多使用4.0或者4.5
同时iis没有配置域名【本地测试机器一般都是没有域名的】
2.解决
方法1
配置域名【服务器的才行,本地机器成本太高,可以忽略了】
方法2
在使用 WebClient wc = new WebClient(); 之前,开启TLS 1.2协议 ServicePointManager.SecurityProtocol =(SecurityProtocolType)3072; 这个写法兼容4.0和4.5版本
标签:TLS,c#,System,域名,报错,WebException,WebClient From: https://www.cnblogs.com/c2g5201314/p/17118899.html