BitServer.SMTPserver.SMTPserver C# (CSharp) Method

SMTPserver() public method

public SMTPserver ( int port ) : System
port int
return System
        public SMTPserver(int port)
        {
            server = new TcpListener(IPAddress.Loopback, port);
            server.Start();
            IA = server.BeginAcceptTcpClient(new AsyncCallback(conIn), null);
        }