How to remove a trigger for a job in Quartz.net and save work? This is only a problem when deleting the last task trigger, now it also deletes the task.
Code I use:
_scheduler.UnscheduleJob(trigger.Key);
and this works fine as long as the job for these triggers has more than one trigger. If this is the last trigger, the task is also deleted, and this is what I do not want.
source
share