我们可以向 ServicePointManager.SecurityProtocol 添加四个协议吗?

Can we add four protocols to ServicePointManager.SecurityProtocol?

我想支持从 ssl3 到 tls 1.2 的所有安全协议。但是在网上搜索时,我发现代码为

`ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11;`

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

但是,我想支持所有协议。那么,写成

是不是错了
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

我上面写的时候没有给我编译错误code.So,这样会不会有什么问题?

是的,它会起作用。您可以找到一个仅支持 TLS 1.2 的网站并尝试此值的不同组合,当您从您的值中省略 SecurityProtocolType.Tls12 时,您的 .NET 应用程序将无法连接到该站点。