hMailServer.Protocols.SMTP.SmtpServerSessionState.HandleRset C# (CSharp) Method

HandleRset() public method

public HandleRset ( ) : void
return void
        public void HandleRset()
        {
            FromAddress = null;
            Recipients.Clear();
        }
    }

Usage Example

 public Task <SmtpCommandReply> HandleRset()
 {
     _state.HandleRset();
     return(SmtpCommandReply.CreateDefault250SuccessTask());
 }
SmtpServerSessionState