即時通訊設法從控制檯應用程序的代碼轉移到uwp,在這個控制檯應用程序中使用ServicePointManager使用所有證書,在uwp應用程序中我不使用它們,並有文本異常 - 「與服務器無法建立「。使用服務器連接的證書
問題是 - 我如何更換ServicePointManager並應用uwp中的所有證書(因爲我不知道用於此服務器的證書是什麼類型)。
ServicePointManager的代碼如下所示:
ServicePointManager.ServerCertificateValidationCallback += new System.Net.Security.RemoteCertificateValidationCallback
(bypassAllCertificateStuff);
private static bool bypassAllCertificateStuff(object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error)
{
return true;
}
感謝您的回覆!
是您之前使用過的控制檯應用程序發佈的ServicePointManager代碼? – oldbam