摘要:
finally 块用于清除 try 块中分配的任何资源,以及运行任何即使在发生异常时也必须执行的代码
阅读全文
摘要:
HttpWebRequest使用证书请求//是否使用证书 if (isUseCert) { string path = HttpContext.Current.Request.PhysicalApplicationPath; X509Certificate2 cert = new X509Certi...
阅读全文
摘要:
public ActionResult Index() { string url = "Https://www.baodu.com"; bool isOK = false; if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase)...
阅读全文
摘要:
if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
阅读全文
摘要:
System.GC.Collect();//垃圾回收,回收没有正常关闭的http连接
阅读全文