9 references to
System.Net.WebProxy (9)
System\Net\WebProxy.cs (9)
21public WebProxy() : this((Uri?)null, false, null, null) { } 23public WebProxy(Uri? Address) : this(Address, false, null, null) { } 25public WebProxy(Uri? Address, bool BypassOnLocal) : this(Address, BypassOnLocal, null, null) { } 27public WebProxy(Uri? Address, bool BypassOnLocal, [StringSyntax(StringSyntaxAttribute.Regex, RegexOptions.IgnoreCase | RegexOptions.CultureInvariant)] string[]? BypassList) : this(Address, BypassOnLocal, BypassList, null) { } 42: this(CreateProxyUri(Host, Port), false, null, null) 47: this(CreateProxyUri(Address), false, null, null) 52: this(CreateProxyUri(Address), BypassOnLocal, null, null) 57: this(CreateProxyUri(Address), BypassOnLocal, BypassList, null) 62: this(CreateProxyUri(Address), BypassOnLocal, BypassList, Credentials)