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.
のインスタンスをofSystem.Net.WebProxy
でWebProxy
見つかったものに渡すことは可能ですか?IUpdateSession
WUApiLib