I am working on .Net CORE 3.1 web API. We use BackgroundHostedService to process time consuming operations. We need an access to HttpContext from that hosted service like this:
public PermissionHelper(IHttpContextAccessor accessor)
{
var routeValue = accessor.HttpContext.GetRouteValue("tenantId");
}
accessor.HttpContext is null here.
I tried to find a nice fix for that. One of them is to capture data inside a processing of HttpContext and pass that data to hostedservice. That method was described in Microsoft documentation: Access HttpContext in ASP.NET Core (Section - HttpContext access from a background thread)
It works fine. But it becomes a really big pain to do such fixes when you add a lot of different nuget packages to you project and those packages access HttContext (and all of that happens inside HostedService)
**My question: ** There is some better fix/workaround to make a "snapshot" of HttpContext inside Http request and pass that "snapshot" to hosted service?