BitServer.POP3connection.send C# (CSharp) Method

send() private method

private send ( string Message ) : void
Message string
return void
        private void send(string Message)
        {
            if (c != null)
            {
                try
                {
                    c.Client.Send(Encoding.ASCII.GetBytes(Message + "\r\n"));
                }
                catch
                {
                    c.Close();
                    if (POP3dropped != null)
                    {
                        POP3dropped();
                    }
                }
            }
        }