如何使用Tls 1.3处理HttpWebRequest C#

时间:2019-03-19 11:39:41

标签: ssl httpwebrequest tls1.3

由于以下错误消息,我无法使用WebRequest连接到HTTPS服务器(TLS 1.3):

请求已中止:无法创建SSL / TLS安全通道。

以前的TLS版本是1.2,使用下面的代码,我可以正确地获取页面,但是随着页面ssl升级到TLS 1.3,我得到了错误,也找不到任何解决方案:

ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

实际上,我认为应该如下所示:

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls13;

但没有。

1 个答案:

答案 0 :(得分:0)