我很难尝试将代理设置与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
?
答案 0 :(得分:1)
IUpdateSession将IWebProxy接口用于WebProxy属性。
AutoDetect属性是布尔属性,因此您应该将其设置为true或false,而不是像方法一样调用它。