Class CloudProxySettings
Represents proxy settings of the cloud storage.
Inheritance
System.Object
CloudProxySettings
Namespace: FastReport.Cloud
Assembly: FastReport.dll
Syntax
public class CloudProxySettings
Constructors
CloudProxySettings(ProxyType, String, Int32, String, String)
Initializes a new instance of the CloudProxySettings class.
Declaration
public CloudProxySettings(ProxyType proxyType, string server, int port, string username, string password)
Parameters
Type | Name | Description |
---|---|---|
ProxyType | proxyType | The type of proxy. |
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. |
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 |