コンソールアプリケーションからuwpにコードを転送しようとしていますが、このコンソールアプリケーションではuwpアプリですべての証明書を使用するServicePointManagerを使用しています。サーバーを確立できませんでした "。サーバー接続用の証明書を使用しています
私は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