Class CalendarNotificationTrigger
A trigger condition that causes a notification to be delivered at a specific date and time.
Inheritance
System.Object
CalendarNotificationTrigger
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: VoxelBusters.EssentialKit
Assembly: cs.temp.dll.dll
Syntax
public sealed class CalendarNotificationTrigger : INotificationTrigger
Constructors
CalendarNotificationTrigger(DateComponents, Boolean, Nullable<DateTime>)
Creates a new instance of the CalendarNotificationTrigger class.
Declaration
public CalendarNotificationTrigger(DateComponents dateComponent, bool repeats, DateTime? nextTriggerDate = default(DateTime? ))
Parameters
| Type | Name | Description |
|---|---|---|
| DateComponents | dateComponent | Date component. |
| System.Boolean | repeats | If set to |
| System.Nullable<DateTime> | nextTriggerDate | Next trigger date. |
Properties
DateComponent
The temporal information to use when constructing the trigger. Provide only the date components that are relevant for your trigger.
Declaration
public DateComponents DateComponent { get; }
Property Value
| Type | Description |
|---|---|
| DateComponents |
NextTriggerDate
The next date at which the trigger conditions will be met.
Declaration
public DateTime? NextTriggerDate { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<DateTime> |
Repeats
Declaration
public bool Repeats { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |