protected virtual void OnRaiseCustomEventHandler1(CustomEventHandler1 e)
 {
    EventHandler<CustomEventHandler1> handler = RaiseCustomEventHandler1;
    if (handler != null)
    {
       handler(this,e);
    }
 }
Beispiel #2
0
 void sdkcommunication_RaiseCustomEventHandler1(object sender, CustomEventHandler1 e)
 {
     //Do something.
 }