Esempio n. 1
0
 public TcpLineCommunicator(string host, int port)
 {
     _settings = new TcpConnectionSettings
     {
         Host = host,
         Port = port
     };
 }
Esempio n. 2
0
 public TcpLineCommunicator(ITcpConnectionSettings settings)
 {
     _settings = settings;
 }