Is there any default proxy setup for all outgoing connection for a C# application?
I am developing a small program that use third party C# libraries. there are two libraries from different vendors. Both take data from Internet. My program should connect trough a proxy, but the server shouldn't.
I need to set a proxy for the program only. I try to use WebRequest.DefaultWebProxy
. For one DLL it works, but for another one it doesn't. The working DLL uses the 443 port, the non-working DLL uses custom ports.
Is there any option to set proxies for C# applications?