ignore ssl csharp

Code Example - ignore ssl csharp

                
                        //In Global.asax.cs File
 protected void Application_Start()
 {
  ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
 }