在运行时从 App.Config 中删除代理设置? (C#.Net 4)

发布于 2024-12-15 20:38:05 字数 108 浏览 1 评论 0原文

我正在使用 .net 4.0 编写 C# 应用程序。 有什么方法可以在运行时从 App.Config 中删除某些内容(例如代理设置)? 如果是的话,有什么办法可以把它放回去吗?

法尔扎德

I'm writing a C# application with.net 4.0.
Is there any way that I can remove something ( like a proxy setting ) from App.Config in runtime ?
if yes than is there any way that I can put it back again ?

Farzad

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离不开的别离 2024-12-22 20:38:05

您可以使用此手动禁用代理设置...

我希望此链接能够清楚地解释您......禁用整个应用程序的代理

  <?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.net>
        <defaultProxy enabled="false" useDefaultCredentials="false">
            <proxy/>
            <bypasslist/>
            <module/>
        </defaultProxy>
    </system.net>
</configuration>

YOu can disable the proxy settings manually by using this ....

I hope this link will clearly explains you......disable proxy for entire application

  <?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.net>
        <defaultProxy enabled="false" useDefaultCredentials="false">
            <proxy/>
            <bypasslist/>
            <module/>
        </defaultProxy>
    </system.net>
</configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文