Example #1
0
        private void ProcessNewConnection(TcpClient client)
        {
            var connection = new ClientConnection(client);

            connectionsService.Add(connection);

            connection.Launch();
        }