Class ProxySettings
Represents proxy settings of the messenger.
Inheritance
System.Object
ProxySettings
Namespace: FastReport.Messaging
Assembly: FastReport.dll
Syntax
public class ProxySettings
Constructors
ProxySettings(String, Int32, String, String, ProxyType)
Initializes a new instance of the ProxySettings class.
Declaration
public ProxySettings(string server, int port, string username, string password, ProxyType proxyType)
Parameters
Type | Name | Description |
---|---|---|
System.String | server | The proxy server. |
System.Int32 | port | The port number of server. |
System.String | username | The username. |
System.String | password | The user's password. |
ProxyType | proxyType | The type of proxy. |
Properties
Password
Gets or sets the user's password.
Declaration
public string Password { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Port
Gets or sets the port number of proxy server.
Declaration
public int Port { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ProxyType
Gets or sets the type of proxy.
Declaration
public ProxyType ProxyType { get; set; }
Property Value
Type | Description |
---|---|
ProxyType |
Server
Gets or sets the proxy server.
Declaration
public string Server { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Username
Gets or sets the username.
Declaration
public string Username { get; set; }
Property Value
Type | Description |
---|---|
System.String |