Answers for "hangfire recurring job disable"

0

hangfire list recurring jobs

List<Hangfire.Storage.RecurringJobDto> recurringJobs = new List<Hangfire.Storage.RecurringJobDto>();
recurringJobs = Hangfire.JobStorage.Current.GetConnection().GetRecurringJobs().ToList();

GetRecurringJobs() is an extension method. You need to add “using Hangfire.Storage” (the most common element missing in any C# documentation!).
Posted by: Guest on October-18-2020
0

hangfire list recurring jobs

List<Hangfire.Storage.RecurringJobDto> recurringJobs = new List<Hangfire.Storage.RecurringJobDto>();
recurringJobs = Hangfire.JobStorage.Current.GetConnection().GetRecurringJobs().ToList();

GetRecurringJobs() is an extension method. You need to add “using Hangfire.Storage” (the most common element missing in any C# documentation!).
Posted by: Guest on October-18-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language