Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

ignore ssl c#

 //In Global.asax.cs File
 protected void Application_Start()
 {
  ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
 }
 
PREVIOUS NEXT
Tagged: #ignore #ssl
ADD COMMENT
Topic
Name
1+2 =