Ejemplo n.º 1
0
 protected virtual void OnStatusEvent(StravaServiceEventArgs e)
 {
     StatusEvent?.Invoke(this, e);
 }
Ejemplo n.º 2
0
 protected virtual void OnStatusEvent(StravaServiceEventArgs e)
 {
     EventHandler<StravaServiceEventArgs> handler = StatusEvent;
     if (handler != null) handler(this, e);
 }