If I want to bypass a Network like 192.168.1.0/24 using webProxy is there any way?
WebProxy proxy = new WebProxy();
proxy.ByPassList = ???
You cannot alter the bypass list after the proxy creation. Use the following constructor overloads:
Uri address = ...
proxy = new WebProxy(address, **true**);
true means "bypass on local", and should be enough for you needs if you are using a 192.168.1.0/24 subnet.
or if you want to add a custom list:
Uri address = ...
proxy = new WebProxy(address, true, new string[] {"192.168.1.1","intranet",...});
You could set it up in Internet Explorer and then use
WebProxy proxy = (WebProxy) WebProxy.GetDefaultProxy();Deprecated.or you could try to add
"192.\.168\.1\.*"
to proxy.BypassList with something like