/// <summary> /// Allows all sub classes to share the same Rset method /// </summary> protected SmtpState AllowRset() { smtpClient.ResetMessage(); smtpClient.SendMessage(SmtpResponses.Okay); return(new SmtpWaitingState(smtpClient)); }
internal SmtpAcceptedState(SmtpClient smtpClient) : base(smtpClient) { smtpClient.ResetMessage(); }