c# – 使用多个ServicePointManager.SecurityProtocol,首先尝试什么?

在.NET 4.5中,如果我将ServicePointManager.SecurityProtocol设置为多个协议,并且服务器接受所有这些协议,那么将使用哪个协议来发出请求?

它是从最高协议开始并以故障恢复还是以最简单的协议开始并且向前失败?

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

最佳答案 我没有过多考虑过这个问题,但文章
here提到.Net 4.6将首先尝试使用最安全的行为.从事物的外观来看,这不仅仅是令人遗憾的事情.

点赞