0

我很难尝试将我的代理设置与WUApiLib.WebProxy/一起使用IUpdateSession.WebProxy

我尝试了以下但没有运气:

IUpdateSession session = new UpdateSession();

session.WebProxy.AutoDetect(); //Error: Method, Delegate or Event is expected.

然后我尝试了以下方法:

 private delegate IUpdateSession D();

 IUpdateSession session = new UpdateSession();
 D proxy = new D(session.WebProxy.AutoDetect()); //Same error...

最后尝试简单地添加地址:

  IUpdateSession session = new UpdateSession();
  session.WebProxy.Address = "http://198.13.44.1:8080"; //This  seems to run, but i'm not sure how i can tell for certain if its working good.

是否可以将一个实例传递System.Net.WebProxy给在 of 中WebProxy找到IUpdateSessionWUApiLib

4

1 回答 1

1

IUpdateSession 使用 WebProxy 属性的 IWebProxy 接口。

AutoDetect属性是一个布尔属性,因此您应该将其设置为 true 或 false,而不是像方法一样调用它。

于 2017-04-24T14:34:07.520 回答