TcpServer.TcpServer C# (CSharp) 메소드

TcpServer() 공개 메소드

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