我在我的C#应用程序中尝试Https ssl连接...我正在接受 线路“无法读取传输连接” WebResponse response =(HttpWebResponse)request.GetResponse();
我正在强制接受证书 ServicePointManager.CertificatePolicy = new MyPolicy();
公共类MyPolicy:ICertificatePolicy {
public bool CheckValidationResult(ServicePoint sp,X509Certificate cert,WebRequest req,int problem) { return true;
}
} 在WM5中工作正常
我可能知道这个问题是错误的吗?plz 提前谢谢