Class ISN_UNNotification
The data for a delivered notification.
A ISN_UNNotification object represents a local or remote notification that has been delivered to your app. A notification object consists of the initial notification request and the date on which the notification was delivered. The notification request includes the content of the notification and the trigger condition that caused it to be delivered.
You do not create instances of this class directly. Instead, the ISN_UNUserNotificationCenter object maintains the list of notification objects whose contents have been delivered to the user. Use the GetDeliveredNotifications(Action<List<ISN_UNNotification>>) method to retrieve those notification objects.
Inheritance
Inherited Members
Namespace: SA.iOS.UserNotifications
Assembly: cs.temp.dll.dll
Syntax
public class ISN_UNNotification
Properties
Date
The delivery date of the notification. This date is displayed to the user in Notification Center.
Declaration
public DateTime Date { get; }
Property Value
Type | Description |
---|---|
DateTime |
Request
The originating notification request.
For local notifications, the request object is a copy of the one you originally configured. For remote notifications, the request object is synthesized from information received from the APNS server.
Declaration
public ISN_UNNotificationRequest Request { get; }
Property Value
Type | Description |
---|---|
ISN_UNNotificationRequest |