需求描述:
在Configur()方法里面我需要注入Consul,需要获取当前应用的Host和Port,但是我无法拿到HttpContext的内容,请问我应该如何拿到?
通过下面的代码可以获取到
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
var bindingUrl = app.ServerFeatures.Get<IServerAddressesFeature>().Addresses.First();
}
非常感谢,可以拿到了