引用this answer,我尝试为服务引用建立代理连接,但无法验证它是否已被实际使用。
在我的app.config中,我有
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy
usesystemdefault="False"
proxyaddress="http://proxyaddresst.com:80"
bypassonlocal="False"/>
</defaultProxy>
</system.net>
但希望能够通过
列出程序本身使用的代理地址Console.WriteLine(DateTime.Now.ToString("hh:mm:ss.fff") + " Proxy: " + ???);
有办法做到这一点吗?这似乎很简单,但首先设置代理也是如此,并且程序没有按预期工作。我想验证代理是否正在使用(并根据需要对其进行折扣)或验证它不是(然后寻找另一种方法来集成它)。