public void RaiseNotification(String message, AppNotificationType type)
        {
            if (_appNotificationServiceProfile != null && type < _appNotificationServiceProfile.MinNotificationLevel)
            {
                return;
            }

            NotificationRaised?.Invoke(this, new AppNotificationRaisedData(message, type));
            _onNotificationUnityEvent?.Invoke();
        }
Example #2
0
 private void OnNotificationRaised(NotificationEventArgs e)
 {
     NotificationRaised?.Invoke(this, e);
 }
Example #3
0
 private void OnNotificationRaised(NotificationType type, string message)
 {
     NotificationRaised?.Invoke(this, new NotificationEventArgs(type, message));
 }