在我的情况下,我正在通过DI/IoCglobal.asax
连接一些服务。AutoFac
其中一项服务想知道当前网站的域名和端口。
例如:-
builder.RegisterType<AuthenticationService>()
.As<IAuthenticationService>()
.WithParameter("localhostServer", new Uri(?????))
.SingleInstance();
这是一些配置的东西。
当我在我的global.asax Application_Start()
更新:服务器 == IIS7,集成模式。(不是 iis6 或经典模式)。