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

TcpCommunicator() protected method

A Communicator with a given IP and Port
protected TcpCommunicator ( IPAddress ip, int port ) : System.Net
ip System.Net.IPAddress IP associated with this TcpCommunicator
port int Port associated with this TcpCommunicator
return System.Net
        protected TcpCommunicator(IPAddress ip, int port)
        {
            IP = ip;
            Port = port;
        }