BitServer.POP3server.POP3server C# (CSharp) Method

POP3server() public method

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