模拟 HangFire 中的 HttpContext.Current

huangapple go评论48阅读模式
英文:

Mock HttpContext.Current in HangFire

问题

"HttpContext.Current"在使用Hang Fire时为null!因为我想要使用"await UserManager.FindAsync();",是否应该将"HttpContext.Current"注入到HangFire中?如何实现?

英文:

HttpContext.Current is null when fire job in Hang Fire!!
because i want to use await UserManager.FindAsync();
should inject HttpContext.Current to HangFire or not and How??

答案1

得分: 1

不要设置HttpContext.Current当您不处理HTTP请求时。

相反,提取所有必要的信息并明确传递给后台作业。

英文:

You should not set HttpContext.Current when you are not handling an HTTP request.

Instead, extract all the information necessary and pass it explicitly to your background job.

huangapple
  • 本文由 发表于 2023年5月17日 18:58:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/76271342.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定