protected BasePoller( string host, int port, SSLType sslType, string username, string password, int pollInterval, EmailSaveFolder saveFolder, AowGameManager gameManager) { _host = host; _port = port; _sslType = sslType; _username = username; _password = password; _pollInterval = pollInterval; _saveFolder = saveFolder; _gameManager = gameManager; _pollQueue = new Queue <string>(); }
public ImapPoller( string host, int port, SSLType sslType, string username, string password, int pollInterval, EmailSaveFolder saveFolder, AowGameManager gameManager) : base( host, port, sslType, username, password, pollInterval, saveFolder, gameManager) { }
public SmtpSender(string host, int port, SSLType sslType, bool bccMyself) : this(host, port, null, null, sslType, bccMyself) { }
public ConnectionDetails(string hostName, string port, SSLType security) : this(hostName, Utils.IsInt32(port) ? int.Parse(port) : -1, security, 2048, true, true, 2) { }
public SocketStream(SSLType ssl) : this(ssl.GetSslProtocols()) { }