以编程方式禁用 IE8 代理 C#
我需要禁用 IE8 中的代理设置,最好不使用注册表和 API。 我一直在研究“InternetQueryOption”(查询设备)和“InternetSetOption” 我可以使用注册表进行更改,然后使用刷新浏览器:
InternetSetOption(IntPtr.Zero, INTERNET_OPTION_SETTINGS_CHANGED, IntPtr.Zero, 0); //INTERNET_OPTION_SETTINGS_CHANGED
InternetSetOption(IntPtr.Zero, INTERNET_OPTION_REFRESH, IntPtr.Zero, 0); //INTERNET_OPTION_REFRESH
但是,我无法使用同一系统来检查或设置 IE 中的设置,该设置表示它是否使用代理服务器进行 LAN 连接,并且任何帮助或示例都会很棒
I need to disable the proxy settings in IE8 preferably without using the registry and using an API.
I have been looking into 'InternetQueryOption' (to query device) and 'InternetSetOption'
I can make the changes using the registry and then refresh the browser using:
InternetSetOption(IntPtr.Zero, INTERNET_OPTION_SETTINGS_CHANGED, IntPtr.Zero, 0); //INTERNET_OPTION_SETTINGS_CHANGED
InternetSetOption(IntPtr.Zero, INTERNET_OPTION_REFRESH, IntPtr.Zero, 0); //INTERNET_OPTION_REFRESH
However I am unable to use the same system to check or set the setting in IE which says if it uses the Proxy server for LAN connections, and any assistance or examples would be great
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一些示例代码。
Here's some example code.