LumiSoft.Net.SMTP.Server.SMTP_Session.NOOP C# (CSharp) Method

NOOP() private method

private NOOP ( ) : void
return void
        private void NOOP()
        {
            /* RFC 2821 4.1.1.9 NOOP (NOOP)
            NOTE:
                This command does not affect any parameters or previously entered
                commands.  It specifies no action other than that the receiver send
                an OK reply.
            */

            m_pSocket.BeginSendLine("250 OK",new SocketCallBack(this.EndSend));
        }