TcpServer.TcpServer C# (CSharp) Method

TcpServer() public method

public TcpServer ( int listenPort ) : System
listenPort int
return System
    public TcpServer(int listenPort)
    {
        e = new IPEndPoint(IPAddress.Any, listenPort);
        sock = new TcpListener(e);
    }