Beispiel #1
0
 public virtual void Dispatch(CommandInput e)
 {
 }
Beispiel #2
0
 public override void Dispatch(CommandInput e)
 {
     #if DEBUG_VERBOSE
     // DEBUG_VERBOSE because these serve almost no practical purpose when debugging
     ("Dispatch(" + _displayName + ") " + Convert.ToString(e)).Log();
     #endif
     ServerTxPerformanceIncrement("CMD");
     try
     {
         Send(e);
     }
     catch
     {
         Control.Network.Server.RemoveClient(this);
     }
 }