Class ProxyOptions
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents the various proxy settings that can be used to resolve the requests
[ClassInterface(ClassInterfaceType.AutoDual)]
public class ProxyOptions
- Inheritance
-
ProxyOptions
- Inherited Members
Constructors
ProxyOptions()
public ProxyOptions()
Properties
BypassedHosts
Gets or sets the hosts to be accessed directly without a proxy
public string[] BypassedHosts { get; set; }
Property Value
- string[]
HostName
Gets or sets the host name of the proxy host
public string HostName { get; set; }
Property Value
Password
Gets or sets the password used for authentication
public string Password { get; set; }
Property Value
PortNumber
Gets or sets the port number of the proxy host to be used when accessing a HTML document
public int PortNumber { get; set; }
Property Value
Type
Gets or sets the proxy type
public NetworkProxyType Type { get; set; }
Property Value
Username
Gets or sets the user name used for authentication
public string Username { get; set; }