We are unable to connect to an HTTPS server using WebRequest because of this error message:
WebRequest
The request was aborted: Could not create SSL/TLS secur
The solution to this, in .NET 4.5 is
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
If you don’t have .NET 4.5 then use
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;