Top "Hangfire" questions

Hangfire is an open-source framework that helps you to create, process and manage your background jobs in .NET Framework and .NET Core.

JobStorage.Current property value has not been initialized. You must set it before using Hangfire Client or Server API

I am using hangfire in mvc application. I am sending reminder to user for his/her appointment. I have installed …

c# asp.net-mvc hangfire
HangFire recurring task data

I am coding a MVC 5 internet application and am using HangFire for recurring tasks. If I have a Monthly recurring …

c# cron asp.net-mvc-5 recurring hangfire
Hangfire .NET Core - Get enqueued jobs list

Is there a method in the Hangfire API to get an enqueued job (probably by a Job id or something)? …

c# background-process asp.net-core-webapi hangfire
In HangFire, can I Enqueue with a queue name instead of using the Queue attribute?

This documentation says that you can specify a queue by using the Queue attribute on the method to be invoked. …

hangfire
Hangfire not running tasks although they are in database

I'm not sure what's going on with Hangfire but calling BackgroundJob.Enqueue() adds a job to the database as "Scheduled" …

c# hangfire
Running background tasks periodically in an ASP.NET Core RC2 application

I'm working on an ASP.NET Core RC2 application. There is a requirement for this application to periodically invoke certain …

c# asp.net asp.net-core quartz.net hangfire
ASP.NET Core MVC Hangfire custom authentication

I managed to work Hangfire on my ASP.NET Core MVC application, and now I am trying to add admin …

asp.net-core-mvc hangfire
Cancel or Delete Scheduled Job - HangFire

I have scheduled a Job via using Hangfire library. My scheduled Code like below. BackgroundJob.Schedule(() => MyRepository.SomeMethod(2),TimeSpan.…

c# asp.net job-scheduling hangfire
Hangfire CRON in UTC time

I am trying to configure a recurring task in my MVC application starting at 00:00 every day. I know this can …

asp.net-mvc cron hangfire
Cancel running job scheduled with Hangfire.io

I schedule job using hangfire.io library and I can observe it being processed in built in dashboard. However, my …

job-scheduling hangfire