The request was aborted: Could not create SSL/TLS secure channel. c# soap code example
Example 1: the request was aborted could not create ssl/tls secure channel. c# restsharp
//Add this line of code before RestClient
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
Example 2: The request was aborted: Could not create SSL/TLS secure channel.
private void Somewhere() {
ServicePointManager.ServerCertificateValidationCallback += new RemoteCertificateValidationCallback(AlwaysGoodCertificate);
}
private static bool AlwaysGoodCertificate(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors policyErrors) {
return true;
}