Using System.Net.WebProxy with WUApiLib IUpdateSession.WebPr
本文关键字:WUApiLib IUpdateSession WebPr with WebProxy System Net Using | 更新日期: 2023-09-27 18:36:06
我很难尝试将我的代理设置与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
实例传递给在WUApiLib
IUpdateSession
中找到的WebProxy
?
IUpdateSession 使用 WebProxy 属性的 IWebProxy 接口。
AutoDetect 属性是一个布尔属性,因此应将其设置为 true 或 false,而不是像方法一样调用它。