BitServer.POP3connection.POP3connection C# (CSharp) Method

POP3connection() public method

public POP3connection ( TcpClient cli ) : System
cli System.Net.Sockets.TcpClient
return System
        public POP3connection(TcpClient cli)
        {
            c = cli;
            lastLine = new byte[10240];
            buffer = new byte[10240];
            c.Client.BeginReceive(buffer, 0, buffer.Length, SocketFlags.None, new AsyncCallback(dataRec), null);
            t = new Thread(new ThreadStart(check));
            t.IsBackground = true;
            t.Start();
        }