标签: c# .net ssl
ServicePointManager.SecurityProtocol值0的实际含义是什么?
如果https连接的值为零,将使用什么协议?
我问因为Enum.TryParse<System.Net.SecurityProtocolType>("arg", out protocol)返回protocol = 0的值,如果“arg”不是有效字符串(例如“Tls12”等),但msdn中的文档对后果有点模糊。
Enum.TryParse<System.Net.SecurityProtocolType>("arg", out protocol)
TIA