I have jobs that are running correctly, but I need to list these from another application. I'm using Quartz version 3.0.7
I have used the following code:
var collJobGroups = await pScheduler.GetJobGroupNames();
but it does not return anything. this one either:
StdSchedulerFactory factory = new StdSchedulerFactory(System.Configuration.ConfigurationManager.AppSettings);
IScheduler scheduler = await factory.GetScheduler();
await scheduler.Start();
IReadOnlyCollection<string> jgn = await scheduler.GetJobGroupNames(new System.Threading.CancellationToken());