Struct iOSNotificationCalendarTrigger
A trigger condition that causes a notification to be delivered at a specific date and time.
Implements
Inherited Members
Namespace: Unity.Notifications.iOS
Assembly: solution.dll
Syntax
public struct iOSNotificationCalendarTrigger : iOSNotificationTrigger
Remarks
Create an instance of iOSNotificationCalendarTrigger when you want to schedule the delivery of a local notification at the specified date and time. You are not required to set all of the fields because the system uses the provided information to determine the next date and time that matches the specified information automatically.
Properties
| Name | Description |
|---|---|
| Day | Day |
| Hour | Hour |
| Minute | Minute |
| Month | Month |
| Repeats | Indicate whether the notification is repeated every defined time period. For instance if hour and minute fields are set the notification will be triggered every day at the specified hour and minute. |
| Second | Second |
| Type | The type of notification trigger. |
| UtcTime | Are Date and Time field in UTC time. When false, use local time. |
| Year | Year |
Methods
| Name | Description |
|---|---|
| ToLocal() | Converts this trigger into the one using local time. |
| ToUtc() | Converts this trigger into the one using UTC time. |