Can we add four protocols to ServicePointManager.SecurityProtocol?
问题 I want to support all security protocols from ssl3 to tls 1.2 . But while searching on net I either found code as `ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11;` or as ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12; But, I want to support all the protocols. So, is it wrong to write as ServicePointManager.SecurityProtocol = SecurityProtocolType