Table of Contents

Class ProxyConfiguration

Namespace
Fluxzy.Clients
Assembly
Fluxzy.Core.dll

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

host string
port int
credentials NetworkCredential

ProxyConfiguration(string, int, string?)

public ProxyConfiguration(string host, int port, string? proxyAuthorizationHeader = null)

Parameters

host string
port int
proxyAuthorizationHeader string

Properties

Credentials

Network credentials for a proxy server.

public NetworkCredential? Credentials { get; }

Property Value

NetworkCredential

Host

Represents the host information for a proxy server.

public string Host { get; }

Property Value

string

Port

Represents the port number for a proxy server.

public int Port { get; }

Property Value

int

ProxyAuthorizationHeader

Represents the Proxy Authorization header for a proxy server.

public string? ProxyAuthorizationHeader { get; set; }

Property Value

string

The Proxy Authorization header value.