gpt4 book ai didi

c# - 如何在 web.config 中设置 ServicePointManager.ServerCertificateValidationCallback

转载 作者:行者123 更新时间:2023-11-30 16:57:00 25 4
gpt4 key购买 nike

如何在 web.config 文件中设置它

ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) =>true;

最佳答案

试试这个;

Global.asaxApplication_Start 中编写您的代码。

它应该工作..!!!

在配置文件中;

<configuration>
<system.net>
<settings>
<servicePointManager
checkCertificateName="false"
checkCertificateRevocationList="false"
/>
</settings>
</system.net>
</configuration>

您也可以访问MSDN同样。

关于c# - 如何在 web.config 中设置 ServicePointManager.ServerCertificateValidationCallback,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27243293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com