0

我正在使用没有凭据的代理在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

请提供任何示例代码或链接。

4

1 回答 1

1

由于文档不完整,我遇到了这个问题,完整的代码如下:

engine.Network.AuthenticateHandler = new Handler<AuthenticateParameters, AuthenticateResponse>(p => AuthenticateResponse.Continue(userName, password));
于 2021-05-26T16:07:34.253 回答