PreviousNext

Background tasks in ASP.NET Core

by bill-s, 2019-01-15T06:13:33.040Z

This post is about running background tasks in ASP.NET Core. In .NET Core 2.1, Microsoft introduced a new feature called IHostedService to allow developers to run a background service that can have a managed lifetime to its caller, be it from an ASP.NET Core or a console.

Read More