其实只要在 Machine.config (也就是 xxx.exe.config) 里面设定就可以了.
范例如下:
<configuration>
<system.net>
<defaultProxy>
<proxy
proxyaddress = "http://proxyserver:80"
bypassonlocal = "true"
/>
</defaultProxy>
</system.net>
</configuration>
此方法, .Net 与 mono 均适用.