Example #1
0
 public void HandleGetHistoryEvent(object o, GetHistoryEventArgs e)
 {
     OnGettingHistory(e);
 }
Example #2
0
        public void HandleGetHistoryEvent(object o, GetHistoryEventArgs e)
        {
            var item = Ports.Find(x => x.Id == e.IdPort);

            item.ATEMessageShow(new MessageFromAteEventArgs(e.History));
        }
Example #3
0
 protected virtual void OnGettingHistory(GetHistoryEventArgs e)
 {
     GettingHistory.Invoke(this, e);
 }
Example #4
0
 public void HandleGetHistoryEvent(object o, GetHistoryEventArgs e)
 {
     e.SetHistory(FindHistory(e.IdPort));
 }