Answers for "the request was aborted could not create ssl/tls secure channel. c# restsharp"

C#
-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;
Posted by: Guest on April-04-2020

Code answers related to "the request was aborted could not create ssl/tls secure channel. c# restsharp"

C# Answers by Framework

Browse Popular Code Answers by Language