public void Stop() { try { Server.Dispose(); } catch (Exception e) { Utils.Logging.Info(e.ToString()); } }
public bool Stop() { try { Server.Dispose(); } catch (Exception e) { Utils.Logging.Info(e.ToString()); return(false); } return(true); }