C# 拦截WebBrowser发出的请求
是否可以拦截 WebBrowser
控件发出的所有请求?
我想修改每个请求的请求URI(包括图像、脚本、样式表等的请求)
Is it possible to intercept all requests made by a WebBrowser
control?
I want to modify the request URI of every single request (including requests for images, scripts, stylesheets, etc.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个名为“BeforeNavigate2”的事件在发出任何请求之前调用。 您可以使用它来修改传出请求。
There is an event called "BeforeNavigate2" that is called before any request is made. You can use this to modify the outgoing requests.