Exemple #1
0
 public virtual void OnCommadSent(CommandSentEventArgs e)
 {
     if (this.CommandSent != null)
     {
         CommandSent(this, e);
     }
 }
Exemple #2
0
        private void CommandSent(object sender, CommandSentEventArgs e)
        {
            Action <string> AddToMessageBox = THREAD_MOD;

            this.messagebox.Invoke(AddToMessageBox, e.Client.IP.ToString() + " sent a command");
        }