我的Web应用程序正在使用一些后端API。我想在web.config中使用为2个API配置的代理,但对于第3个API,我想绕过这个代理。对我来说最好的解决方案是通过web.config。
怎么做? 最佳解决方案是通过web.config。
答案 0 :(得分:0)
我已找到解决方案:
<system.net>
<defaultProxy enabled="true" >
<proxy proxyaddress="http://proxy.ccc.com:911" bypassonlocal="true" />
<bypasslist >
<add address="aaa.bbb.com" /> <!-- url not using proxy -->
</bypasslist>
</defaultProxy>
</system.net>