使用System.Net.WebProxy和WUApiLib IUpdateSession.WebProxy?

时间:2013-10-18 14:04:20

标签: c# windows

我很难尝试将代理设置与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的实例传递给WebProxy IUpdateSession中找到的WUApiLib

1 个答案:

答案 0 :(得分:1)

IUpdateSession将IWebProxy接口用于WebProxy属性。

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