我在Dotnetbrowser中使用不带凭据的代理。但我需要在代理中提供用户名和密码。我正在构造函数中实现代码。这是我的工作代码
string proxyRules = String.Format("http={0}:{1};https={0}:{1};ftp={0}:{1};socks={0}:{1}", hostName, port);
string exceptions = "<local>"; // bypass proxy server for local web pages
engine.Proxy.Settings = new CustomProxySettings(proxyRules, exceptions);
我已经找到了代码,但无法实现,因为代码不完整
network.AuthenticateHandler = new Handler<AuthenticateParameters, AuthenticateResponse>(p =>
AuthenticateResponse.Continue("<username>", "<password>"));
当我把这个代码粘贴到我的类中时,文档是不完整的,它给出了异常
The name 'network' does not exists in current context
请提供任何示例代码或链接。
由于文档不完整,我遇到了这个问题,完整的代码如下:
engine.Network.AuthenticateHandler = new Handler<AuthenticateParameters, AuthenticateResponse>(p => AuthenticateResponse.Continue(userName, password));