Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 Windows .NET 应用程序使用 Internet 设置中配置的代理设置?
虽然在其他地方发布了 HttpWebRequest 默认使用 Windows/IE 代理设置,但没有发布的是,如果代理需要身份验证,则默认情况下不使用身份验证。这可以通过将以下内容添加到 app.config 来纠正:
<system.net> <defaultProxy enabled="true" useDefaultCredentials="true" /> </system.net>
至少对我来说,解决问题的一点配置。