Class CloudProxySettings
Namespace: FastReport.Olap.Cloud
Assembly: FastCube.Core.dll
Proxy settings for cloud.
public class CloudProxySettings
Inheritance
Constructors
CloudProxySettings(ProxyType, string, int, string, string)
Initializes a new instance of the FastReport.Olap.Cloud.CloudProxySettings class.
public CloudProxySettings(ProxyType proxyType, string server, int port, string username, string password)
Parameters
proxyType
ProxyType
The type of proxy.
server
string
The proxy server.
port
int
The port number of server.
username
string
The username.
password
string
The user's password.
Properties
Password
Gets or sets the user's password.
public string Password { get; set; }
Property Value
Port
Gets or sets the port number of proxy server.
public int Port { get; set; }
Property Value
ProxyType
Gets or sets the type of proxy.
public ProxyType ProxyType { get; set; }
Property Value
Server
Gets or sets the proxy server.
public string Server { get; set; }
Property Value
Username
Gets or sets the username.
public string Username { get; set; }