在我的global.asax
我通过AutoFac
为DI / IoC连接一些服务。
其中一项服务想知道当前网站的域名和端口。
例如: -
builder.RegisterType<AuthenticationService>()
.As<IAuthenticationService>()
.WithParameter("localhostServer", new Uri(?????))
.SingleInstance();
这是一些配置。
当我在global.asax Application_Start()
更新:服务器== IIS7,集成模式。 (不是iis6或经典模式)。
答案 0 :(得分:2)
我认为没有确定的方法可以做到这一点:
你可能需要做以下事情之一: