예제 #1
0
        protected virtual void Subscriber_Matched(object sender, TEventResult e)
        {
            if (e == null)
                return;

            Matched?.Invoke(sender, e);
        }
예제 #2
0
 private void TriggerMatched(T response)
 {
     Matched?.Invoke(this, response);
 }