@ user1301587, I hope you found the way forward, but I noticed that your question is still quite high on Google, so I will continue and add some psuedo code on how I will do this:
- (
)
CronScheduleBuilder :
string cronExpression = string.Format( "{0} {1} {2} {3} {4} {5}", , minutePart, hourPart, dayOfMonthPart, monthPart, dayOfWeekPart );
IScheduleBuilder scheduleBuilder = CronScheduleBuilder
.CronSchedule(cronExpression)
.InTimeZone(TimeZoneInfo.Utc);
. cron 0 26 6 * *? 6:26
, , Quartz , UTC,
, :
ICronTrigger trigger = (ICronTrigger)TriggerBuilder.Create()
.WithIdentity("TestTrigger")
.WithSchedule(scheduleBuilder)
.Build();
, Quart.Net