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