How to fix 'The underlying connection was closed: An unexpected error occurred on a send'
By Tan Lee Published on Feb 16, 2024 987
The error "The underlying connection was closed: An unexpected error occurred on a send." typically occurs when there's a problem with the SSL/TLS communication between your application and the server.
This issue can be related to several factors, such as SSL/TLS protocol mismatches, server configuration issues, or network problems.
To solve the problem you should set the configuration as the following c# code.
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12;
You can add the code above in the Program class.
static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12; Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new frmFluentDesignForm()); } }
I hope so you can solve the problem when using RestSharp library with https protocol.
Categories
Popular Posts
Material Lite Admin Template
Nov 14, 2024
11 Things You Didn't Know About Cloudflare
Dec 19, 2024
Toolbox Admin Responsive Tailwind CSS Admin Template
Nov 20, 2024
Focus Admin Dashboard Template
Nov 18, 2024