/// <summary> /// Raises the <see cref="NotificationActivated"/> event /// </summary> /// <param name="e">Event arguments</param> protected virtual void OnNotificationActivated(NotificationEventArgs e) { Properties.TriggerEvent(NotificationActivatedEvent, this, e); }
/// <summary> /// Raises the notification activated event. /// </summary> public void OnNotificationActivated(Application widget, NotificationEventArgs e) { using (widget.Platform.Context) widget.OnNotificationActivated(e); }