private void InvokeEvent(SourceEventArgs e) { EventHandler<SourceEventArgs> handler = this.Event; if (handler != null) { handler(this, e); } }
public void HandleSubscription(object sender, SourceEventArgs e) { this.SubscriptionEventArgs = e; }