protected void RaiseEvent(PresentationEventArgs e)
 {
     if (OnDataReceive != null)
     {
         OnDataReceive(this, e);
     }
 }
Example #2
0
 protected virtual void ProcessPresentationEvent(PresentationEventArgs e)
 {
 }
Example #3
0
 private void Presentation_OnDataReceive(object sender, PresentationEventArgs e)
 {
     ProcessPresentationEvent(e);
 }