1
Answer

System.Net.ServicePointManager.ServerCertificateValidationCa

Photo of Swapnil Nandane

Swapnil Nandane

9y
879
1
can you help me where actually i put these code for skipping certifivcatr validation
 
System.Net.ServicePointManager.ServerCertificateValidationCallback += (se, cert, chain, sslerror) =>
{
return true;
};

Answers (1)