// Invoke the Changed event; called whenever list changes
 protected virtual void msgSendRecived(MsgSendRecivedEventArgs e)
 {
     if (MsgSendRecived != null)
     {
         MsgSendRecived(this, e);
     }
 }
 /// <summary>
 /// Redirect the Log Messages Fromm the Connections
 /// </summary>
 /// <param name="logMessage"></param>
 public void SendRecivedEventHandler(object sender, MsgSendRecivedEventArgs e)
 {
     // Set the Event that the User Changed an Input
     msgSendRecived(e);
 }