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

VRFY() private method

private VRFY ( ) : void
return void
        private void VRFY()
        {
            /* RFC 821 VRFY
            Example:
                S: VRFY Lumi
                R: 250 Ivar Lumi <[email protected]>

                S: VRFY lum
                R: 550 String does not match anything.
            */

            // ToDo: Parse user, add new event for cheking user

            //	SendData("250 OK\r\n");

            m_pSocket.BeginSendLine("502 Command not implemented",new SocketCallBack(this.EndSend));
        }