mscorlib(4.0.0.0) API with additions
IWebProxy.cs
1 namespace System.Net
2 {
4  [global::__DynamicallyInvokable]
5  public interface IWebProxy
6  {
9  [global::__DynamicallyInvokable]
11  {
12  [global::__DynamicallyInvokable]
13  get;
14  [global::__DynamicallyInvokable]
15  set;
16  }
17 
21  [global::__DynamicallyInvokable]
22  Uri GetProxy(Uri destination);
23 
28  [global::__DynamicallyInvokable]
29  bool IsBypassed(Uri host);
30  }
31 }
Uri GetProxy(Uri destination)
Returns the URI of a proxy.
bool IsBypassed(Uri host)
Indicates that the proxy should not be used for the specified host.
Provides the base authentication interface for retrieving credentials for Web client authentication.
Definition: ICredentials.cs:5
ICredentials Credentials
The credentials to submit to the proxy server for authentication.
Definition: IWebProxy.cs:11
Provides the base interface for implementation of proxy access for the T:System.Net....
Definition: IWebProxy.cs:5
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts...
Definition: Uri.cs:19