Reset() public method

public Reset ( ) : void
return void
Esempio n. 1
0
        private async Task HandleStartTls()
        {
            await SendCommandResult(new SmtpCommandReply(220, "Go ahead"));

            await _connection.SslHandshakeAsServer(_configuration.SslCertificate);

            await _commandHandler.HandleRset();

            _state.Reset();
        }