You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Specify the year to schedule the notification for or set to null to indicate any year.
180
181
/// </summary>
182
+
/// <value>Number indicating year or null to ignore year</value>
181
183
publicint?Year{get;set;}
182
184
183
185
/// <summary>
184
-
/// Month
186
+
/// Specify the month to schedule the notification for or set to null to indicate any month.
185
187
/// </summary>
188
+
/// <value>Number indicating month or null to ignore month</value>
186
189
publicint?Month{get;set;}
187
190
188
191
/// <summary>
189
-
/// Day
192
+
/// Specify the day to schedule the notification for or set to null to indicate any day.
190
193
/// </summary>
194
+
/// <value>Number indicating day or null to ignore day</value>
191
195
publicint?Day{get;set;}
192
196
193
197
/// <summary>
194
-
/// Hour
198
+
/// Specify the hour to schedule the notification for or set to null to indicate any hour.
195
199
/// </summary>
200
+
/// <value>Number indicating hour or null to ignore hour</value>
196
201
publicint?Hour{get;set;}
197
202
198
203
/// <summary>
199
-
/// Minute
204
+
/// Specify the minute to schedule the notification for or set to null to indicate any minute.
200
205
/// </summary>
206
+
/// <value>Number indicating minute or null to ignore minute</value>
201
207
publicint?Minute{get;set;}
202
208
203
209
/// <summary>
204
-
/// Second
210
+
/// Specify the second to schedule the notification for or set to null to indicate any second.
205
211
/// </summary>
212
+
/// <value>Number indicating second or null to ignore second</value>
206
213
publicint?Second{get;set;}
207
214
208
215
/// <summary>
209
216
/// Are Date and Time field in UTC time. When false, use local time.
210
217
/// </summary>
218
+
/// <value>If true, use UTC time.</value>
211
219
publicboolUtcTime{get;set;}
212
220
213
221
/// <summary>
214
222
/// 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.
215
223
/// </summary>
224
+
/// <value>If true, the notification repeats for each matching date and time. If false, the notification triggers only on the first match.</value>
0 commit comments