Exemplo n.º 1
0
 private void CreateTcpClient()
 {
     if (tcpCient == null)
     {
         Log.Debug().Print("(Re)creating TcpClient", LogFields.IP(ip), LogFields.Port(port));
         tcpCient = new TcpClient
         {
             ExclusiveAddressUse = true,
             NoDelay             = true,
             ReceiveBufferSize   = 1000000
         };
     }
 }