通常情况下,我会安排推送通知在将来某个时间发送 -
Notification notification = new AppleNotification("{\"aps\":{\"alert\":\"Happy birthday!\"}}");
var scheduled = await hub.ScheduleNotificationAsync(notification, new DateTime(2016, 7, 19, 0, 0, 0));
此处预定的类型为ScheduledNotification。如何跟踪我的通知是否已送达?
ScheduledNotification有一个TrackingId,但我找不到任何关于如何使用它来获取NotificationOutcome对象的文档。