public void Stop()
        {
            // stop tcp server
            Server.Stop();

            // stop command line interpreter
            commandLineInterpreter?.Stop();
        }
 public void StopConsole()
 {
     commandLineInterpreter.Stop();
 }