MinimalisticTelnet.TelnetConnection.TelnetConnection C# (CSharp) Method

TelnetConnection() public method

public TelnetConnection ( string Hostname, int Port ) : System
Hostname string
Port int
return System
        public TelnetConnection(string Hostname, int Port)
        {
            tcpSocket = new TcpClient(Hostname, Port);
        }