At NotificationCreationData.cs at ctor NotificationCreationData(ToastNotification dataSource) we're assigning default to ScheduledTime because ToastNotification does not carry information regarding schedule time.
To workaround this we'd need to pass value of schedule time into custom properties, like we're doing with NotificationId, RegistrationId and so on...
At
NotificationCreationData.cs
at ctorNotificationCreationData(ToastNotification dataSource)
we're assigningdefault
toScheduledTime
becauseToastNotification
does not carry information regarding schedule time.To workaround this we'd need to pass value of schedule time into custom properties, like we're doing with
NotificationId
,RegistrationId
and so on...