How to get JobKey / JobDetail of Quartz Job
I'm having trouble to understand how I can get the details of a job with Quartz version 2.3.2. Until now, we used Quartz v1.0.x for jobs and I have to upgrade it to the latest version. This is how we used to get the details of a job: JobDetail job = scheduler.GetJobDetail(task.Name, groupName); With version 2.3.2, the method GetJobDetail() doesn't have a constructor that takes 2 parameter anymore... instead, it takes a JobKey parameter. Unfortunately I couldn't find a way to get a single JobKey. What I tried is the following: string groupName = !string.IsNullOrEmpty(task.GroupNameExtension) ?