ignore ssl certificate c# code example
Example: ignore ssl c#
//In Global.asax.cs File
protected void Application_Start()
{
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
}
//In Global.asax.cs File
protected void Application_Start()
{
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
}