3 instantiations of WebProxy
System.ServiceModel.Http (3)
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
112
Proxy = new
WebProxy
(bindingElement.ProxyAddress, bindingElement.BypassProxyOnLocal);
124
Proxy = new
WebProxy
();
1385
WebProxy result = new
WebProxy
(_address, _bypassOnLocal);
21 references to WebProxy
netstandard (1)
netstandard.cs (1)
1304
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.
WebProxy
))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
796
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.
WebProxy
))]
System.Net.WebProxy (18)
System\Net\WebProxy.cs (18)
20
/// The <see cref="
WebProxy
"/> class contains the proxy settings that <see cref="T:System.Net.Http.HttpClient"/> instances use to determine whether a Web proxy is used to send requests.
21
/// The <see cref="
WebProxy
"/> class is the base implementation of the <see cref="IWebProxy"/> interface.
29
/// Initializes an empty instance of the <see cref="
WebProxy
" /> class.
33
/// The parameterless constructor initializes an empty instance of the <see cref="
WebProxy
"/> class with the <see cref="Address"/> property set to <see langword="null"/>.
42
/// Initializes a new instance of the <see cref="
WebProxy
" /> class from the specified <see cref="Uri" /> instance.
48
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the <see cref="Uri" /> instance and bypass setting.
55
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified <see cref="Uri" /> instance, bypass setting, and list of URIs to bypass.
63
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified <see cref="Uri" /> instance, bypass setting, list of URIs to bypass, and credentials.
82
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified host and port number.
88
/// The <see cref="
WebProxy
"/> instance is initialized with the <see cref="Address"/> property set to a <see cref="Uri"/> instance of the form <c>http://</c><paramref name="Host"/><c>:</c><paramref name="Port"/>.
96
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified URI.
106
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified URI and bypass setting.
117
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified URI, bypass setting, and list of URIs to bypass.
129
/// Initializes a new instance of the <see cref="
WebProxy
" /> class with the specified URI, bypass setting, list of URIs to bypass, and credentials.
333
/// Initializes an instance of the <see cref="
WebProxy
" /> class using previously serialized content.
339
/// This method is called by the system to deserialize a <see cref="
WebProxy
"/> instance; applications do not call it.
362
/// A <see cref="
WebProxy
"/> instance that contains the nondynamic proxy settings from Internet options.
366
public static
WebProxy
GetDefaultProxy() =>
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
1385
WebProxy
result = new WebProxy(_address, _bypassOnLocal);