Ejemplo n.º 1
0
 public CmdClose(SMTP.SMTPCommunicator smtpCommunicator)
     : base("Close", smtpCommunicator)
 {
     base.Command.Description = "Close the connection to a SMTP server.";
 }
Ejemplo n.º 2
0
 public CmdSMTPCommunicatable(string commandName, SMTP.SMTPCommunicator smtpCommunicator) : base(commandName)
 {
     this.SMTPCommunicator = smtpCommunicator;
 }
Ejemplo n.º 3
0
 public CmdOpen(SMTP.SMTPCommunicator smtpCommunicator)
     : base("open", smtpCommunicator)
 {
     base.Command.Description = "Open a connection to a STMP server.";
 }
Ejemplo n.º 4
0
 public CmdStartTls(SMTP.SMTPCommunicator smtpCommunicator)
     : base("StartTls", smtpCommunicator)
 {
     base.Command.Description = "Open or close TLS connection session.";
 }
Ejemplo n.º 5
0
 public CmdSay(SMTP.SMTPCommunicator smtpCommunicator)
     : base("Say", smtpCommunicator)
 {
     base.Command.Description = "Send string to SMTP server and wait for its response.";
 }