我创建的其中一项服务需要将当前主机名作为参数(不同的请求使用不同的主机名,这会影响我的服务使用的外部资源):
public class Foo
{
public Foo(string host) {...}
}
我将其注册为范围:
public void ConfigureServices(IServiceCollection services)
{
services.AddScoped(s => new Foo(/* get host name for the current request */));
}
此时获取主机名的最简洁方法是什么?
更新:我想出了这个:
private static Foo GetFoo(IServiceProvider services)
{
var contextAccessor = services.GetRequiredService<IHttpContextAccessor>();
var host = contextAccessor.HttpContext.Request.Host.Value;
return new Foo(host);
}
它是一个好的/支持的解决方案,还是一个黑客?