IWebProxy Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides the base interface for implementation of proxy access for the HttpClient class.
public interface class IWebProxy
public interface IWebProxy
type IWebProxy = interface
Public Interface IWebProxy
- Derived
Remarks
The IWebProxy interface provides the methods and properties that are required by the HttpClient class to access proxy servers.
The WebProxy class is the base implementation of the IWebProxy interface.
Notes to Implementers
The GetProxy(Uri) method can be used to control proxy use based on the destination URI. Use the IsBypassed(Uri) method to indicate that the proxy should not be used to reach the destination server.
Properties
Credentials |
The credentials to submit to the proxy server for authentication. |
Methods
GetProxy(Uri) |
Returns the URI of a proxy. |
IsBypassed(Uri) |
Indicates that the proxy should not be used for the specified host. |