请问下在 autofac 框架里面 ILifetimeScope 是用来干嘛的。
public object Resolve(Type type, ILifetimeScope scope = null) { if (scope == null) { //no scope specified scope = Scope(); } return scope.Resolve(type); }
这里传入 ILifetimeScope 对象用处
生命周期管理
管理对象生命周期,有单例,有请求响应等模式