WPF - 如何在 WebBrowser 控件中插入代理凭据
我在 WPF 中使用 webbrowser
control
来显示虚拟地球地图,但因为我是在我公司的 proxy
后面进行开发,每次我尝试查看地图时,我都必须插入我的凭据。
我想在 C# 代码中自动插入它们,如何实现?
我已经尝试在网络浏览器的导航事件中使用:
void webBrowser_Navigating(object sender, NavigatingCancelEventArgs e)
{
//NetworkCredential credential = new NetworkCredential("u007239", "****", "****");
//e.WebRequest.Proxy.Credentials = credential;
}
但这不起作用,因为我发现 e.webrequest
是一个 null 对象
。
欢迎所有帮助。
I'm using a webbrowser
control
in WPF to show a virtual earth map, but because I'm developing behind a proxy
of my company, every time I try to see the map, I have to insert my credentials.
I would like to insert them automatically in the c# code, how can I achieve that?
I already try in the navigating event of the web browser using:
void webBrowser_Navigating(object sender, NavigatingCancelEventArgs e)
{
//NetworkCredential credential = new NetworkCredential("u007239", "****", "****");
//e.WebRequest.Proxy.Credentials = credential;
}
But this doesn't work because I'm getting that e.webrequest
is a null object
.
all the help is welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能将以下内容放入您的 app.config 中吗?
Can you not just put the following in your app.config?