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.

Hangfire dependency injection with .net core

How can I use .net core's default dependency injection in Hangfire ? I am new to Hangfire and searching for an …

c# asp.net-core hangfire
Configure cron job that is executing every 15 minutes on Hangfire

I am using Hangfire and like the software very much! But one thing I am missing is how to add …

c# hangfire ncron
How to remove all hangfire recurring jobs on startup?

I am looking at using Hangfire as a job scheduler for recurring jobs. So configuring them is simple with AddOrUpdate, …

c# recurring hangfire
Why is Hangfire requiring authentication to view dashboard

I am running HangFire within my MVC web app but whenever I try to navigate to http://MyApp/hangfire, it …

asp.net-mvc forms-authentication hangfire
How to create cron expression for hangfire job that executes everyday at some time

I am new to cron expression.All i need to know that how to create cron for recurring job in …

cron hangfire
Hangfire recurring tasks under minute

Is there a way to set hangfire recurring jobs every few seconds? I do not seek a solution where fire …

c# .net hangfire
How can I safely reset Hangfire to a clean state?

I have a server with Hangfire installed. I haven't checked it for a while and it seems one recurring job …

c# sql-server hangfire
How to invoke async methods in Hangfire?

I have asp.net core API application and this is the first time i will be using HangFire. In .Net …

c# asp.net-core .net-core hangfire
Is there an in memory job storage package for Hangfire?

I have a console application to test HangFire. Here is the code: using System; using Hangfire; namespace MyScheduler.ConsoleApp { internal …

c# hangfire
Hangfire Background Job with Return Value

I'm switching from Task.Run to Hangfire. In .NET 4.5+ Task.Run can return Task<TResult> which allows me …

c# asp.net asynchronous hangfire