gpt4 book ai didi

.net - 在 .NET 中,我的 app.config 设置的运行时等效项是什么?

转载 作者:行者123 更新时间:2023-12-02 07:38:10 25 4
gpt4 key购买 nike

如果我的 app.config 文件中有以下设置。这是我需要确保我的 WCF 客户端可以协商默认代理服务器的设置。

<system.net>
<defaultProxy enabled="true" useDefaultCredentials="true"></defaultProxy>
</system.net>

不幸的是,我无法添加到我的环境中的 app.config 文件。如何通过在运行时设置来确保这些设置?

最佳答案

我认为您要做的就是创建一个 System.Net.WebProxy 对象,然后设置适当的变量,然后设置 System.Net.WebRequest.DefaultWebProxy :

System.Net.WebProxy proxy = new WebProxy();
proxy.UseDefaultCredentials = true;
WebRequest.DefaultWebProxy = proxy;

这篇文章讨论了整个事情:Link

希望有帮助!

关于.net - 在 .NET 中,我的 app.config 设置的运行时等效项是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/299574/

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