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

C#
//Add this line of code before RestClient
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
Source

Also in C#: