Quartz.Net how to create a reminder from any date

0

I am trying to generate a reminder with Quartz.Net, which can do the following, I have a date (any, it can be today, tomorrow or the day after tomorrow), the Trigger must be activated when that date arrives (for example if today is August 1, but the date I have is August 29, I must raise an alert on August 29), at the same time the same alert should appear 5 days later and 10 days later. Is it possible to make this type of reminder? I currently have this code, but I have only managed to do it every day, but not as I really need it:

var trigger = TriggerBuilder.Create()
  .WithDailyTimeIntervalSchedule(s => 
      s.OnEveryDay().StartingDailyAt(new TimeOfDay(13, 00)))
.Build();
    
asked by Broodwing009 27.08.2018 в 19:02
source

0 answers