Beispiel #1
0
 public static void InvokeCommandSent(CommandEventArgs args)
 {
     if (CommandSent != null)
         CommandSent(args);
 }
Beispiel #2
0
 public static void InvokeCommandReceived(CommandEventArgs args)
 {
     if (CommandReceived != null)
         CommandReceived(args);
 }