C#:WebRequest 代理 = null 副作用
有谁知道在 HttpWebRequest 中使用 webrequest.proxy = null
有什么副作用?
MSDN (.NET Framework 4) 表示在不应使用代理时使用 GlobalProxySelection.GetEmptyWebProxy() 。将返回一个空白的 IWebProxy
实例。 Visual Studio 说它已被弃用!
如果用户的网络需要代理设置,这两种情况下的网络请求是否仍然有效?
那么,当需要代理时,正确的方法和任何已知问题/副作用是什么?
关于已弃用的问题; Visual Studio 说:使用 null
代替
Does anyone know what the side effects are of having a webrequest.proxy = null
in a HttpWebRequest?
MSDN (.NET Framework 4) says to use GlobalProxySelection.GetEmptyWebProxy()
when no proxy should be used. A blank IWebProxy
instance will be returned. Visual Studio says it's deprecated!!
Does the webrequest in both cases still work if the user's network requires proxy settings?
So, what is the correct approach and any known issues/side effects when a proxy is needed?
About the deprecated issue; Visual Studio says: Use null
instead
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有副作用。
VS给你的建议是正确的。
一个完全不同的问题。您的连接很可能无法工作。使用
WebRequest.DefaultWebProxy
相反。No, there are no side effects.
VS is advising you correctly.
An entirely different question. Your connection will most likely not work. Use
WebRequest.DefaultWebProxy
instead.