Automobile.Communication.Tcp.TcpServerCommunicator.TcpServerCommunicator C# (CSharp) Method

TcpServerCommunicator() public method

Listens for a single connection on a given port
public TcpServerCommunicator ( int port ) : System.Net
port int Port to listen on
return System.Net
        public TcpServerCommunicator(int port)
            : base(IPAddress.Any, port)
        {
            Listener = new TcpListener(IPAddress.Any, Port);
        }

Same methods

TcpServerCommunicator::TcpServerCommunicator ( int port, TcpClient client ) : System.Net