123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Net;
- namespace FastReport.Cloud
- {
- /// <summary>
- /// Represents proxy settings of the cloud storage.
- /// </summary>
- public class CloudProxySettings
- {
- #region Fields
- private ProxyType proxyType;
- private string server;
- private int port;
- private string username;
- private string password;
- #endregion // Fields
- #region Properties
- /// <summary>
- /// Gets or sets the type of proxy.
- /// </summary>
- public ProxyType ProxyType
- {
- get { return proxyType; }
- set { proxyType = value; }
- }
- /// <summary>
- /// Gets or sets the proxy server.
- /// </summary>
- public string Server
- {
- get { return server; }
- set { server = value; }
- }
- /// <summary>
- /// Gets or sets the port number of proxy server.
- /// </summary>
- public int Port
- {
- get { return port; }
- set { port = value; }
- }
- /// <summary>
- /// Gets or sets the username.
- /// </summary>
- public string Username
- {
- get { return username; }
- set { username = value; }
- }
- /// <summary>
- /// Gets or sets the user's password.
- /// </summary>
- public string Password
- {
- get { return password; }
- set { password = value; }
- }
- #endregion // Properties
- #region Constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="CloudProxySettings"/> class.
- /// </summary>
- /// <param name="proxyType">The type of proxy.</param>
- /// <param name="server">The proxy server.</param>
- /// <param name="port">The port number of server.</param>
- /// <param name="username">The username.</param>
- /// <param name="password">The user's password.</param>
- public CloudProxySettings(ProxyType proxyType, string server, int port, string username, string password)
- {
- this.proxyType = proxyType;
- this.server = server;
- this.port = port;
- this.username = username;
- this.password = password;
- }
- #endregion // Constructors
- }
- /// <summary>
- /// Represents the type of rpoxy.
- /// </summary>
- public enum ProxyType
- {
- /// <summary>
- /// The HTTP proxy type.
- /// </summary>
- Http,
- /// <summary>
- /// The SOCKS4 proxy type.
- /// </summary>
- Socks4,
- /// <summary>
- /// The SOCKS5 proxy type.
- /// </summary>
- Socks5
- }
- }
|