📜  忽略 ssl c# 代码示例

📅  最后修改于: 2022-03-11 14:48:38.383000             🧑  作者: Mango

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