Answers for "ignore ssl c#"

C#
0

ignore ssl c#

//In Global.asax.cs File
 protected void Application_Start()
 {
  ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
 }
Posted by: Guest on September-28-2020

C# Answers by Framework

Browse Popular Code Answers by Language