public void RaiseNotification(String message, AppNotificationType type) { if (_appNotificationServiceProfile != null && type < _appNotificationServiceProfile.MinNotificationLevel) { return; } NotificationRaised?.Invoke(this, new AppNotificationRaisedData(message, type)); _onNotificationUnityEvent?.Invoke(); }
private void OnNotificationRaised(NotificationEventArgs e) { NotificationRaised?.Invoke(this, e); }
private void OnNotificationRaised(NotificationType type, string message) { NotificationRaised?.Invoke(this, new NotificationEventArgs(type, message)); }