.NET 4.5 Use TLS 1.2

System.Net.ServicePointManager.SecurityProtocol =
    SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
Worried Wasp