9 references to
System.Net.WebProxy (9)
System\Net\WebProxy.cs (9)
39public WebProxy() : this((Uri?)null, false, null, null) { } 45public WebProxy(Uri? Address) : this(Address, false, null, null) { } 52public WebProxy(Uri? Address, bool BypassOnLocal) : this(Address, BypassOnLocal, null, null) { } 60public WebProxy(Uri? Address, bool BypassOnLocal, [StringSyntax(StringSyntaxAttribute.Regex, RegexOptions.IgnoreCase | RegexOptions.CultureInvariant)] string[]? BypassList) : this(Address, BypassOnLocal, BypassList, null) { } 91: this(CreateProxyUri(Host, Port), false, null, null) 101: this(CreateProxyUri(Address), false, null, null) 112: this(CreateProxyUri(Address), BypassOnLocal, null, null) 124: this(CreateProxyUri(Address), BypassOnLocal, BypassList, null) 137: this(CreateProxyUri(Address), BypassOnLocal, BypassList, Credentials)