protected override void OnClientConnected(TCPConnection Connection)
        {
            if (ClientConnected != null)
            {
                ClientConnected(Connection);
            }

            //TODO: Select an available Client Handler server from the list of registered servers and send the IP & Port to the client.

            Connection.Dispose();             //Disconnect the connection from this server.
        }