Esempio n. 1
0
 private void RaiseNotification(BroadCastEventType pEventType, object pData)
 {
     if (this.Notification != null)
     {
         this.ProcessDelegate(this.Notification, new object[]
         {
             this,
             new BroadCastEventArgs(pEventType, pData)
         });
     }
 }
Esempio n. 2
0
 public BroadCastEventArgs(BroadCastEventType pEventType, object pData)
 {
     this._eventType = pEventType;
     this._data      = pData;
     this._now       = DateTime.Now;
 }