protected virtual void OnUserSubscribed(TwitchSubscription subscription) { UserSubscribed?.Invoke(this, new UserSubscribedEventArgs(subscription)); }
/// <summary> /// Raises the <see cref="UserSubscribed"/> event. /// </summary> /// <param name="e">The <see cref="EventArgs"/> instance holding the event data.</param> internal void OnUserSubscribed(TwitchSubscriptionEventArgs e) { UserSubscribed?.Invoke(this, e); }