protected virtual void Subscriber_Matched(object sender, TEventResult e) { if (e == null) return; Matched?.Invoke(sender, e); }
private void TriggerMatched(T response) { Matched?.Invoke(this, response); }