Class ProxyConfiguration
Represents the configuration for a proxy server.
public class ProxyConfiguration
- Inheritance
-
ProxyConfiguration
- Inherited Members
Constructors
ProxyConfiguration(string, int, NetworkCredential?)
public ProxyConfiguration(string host, int port, NetworkCredential? credentials)
Parameters
hoststringportintcredentialsNetworkCredential
ProxyConfiguration(string, int, string?)
public ProxyConfiguration(string host, int port, string? proxyAuthorizationHeader = null)
Parameters
Properties
Credentials
Network credentials for a proxy server.
public NetworkCredential? Credentials { get; }
Property Value
Host
Represents the host information for a proxy server.
public string Host { get; }
Property Value
Port
Represents the port number for a proxy server.
public int Port { get; }
Property Value
ProxyAuthorizationHeader
Represents the Proxy Authorization header for a proxy server.
public string? ProxyAuthorizationHeader { get; set; }
Property Value
- string
The Proxy Authorization header value.