container.RegisterType<IMyType, MyType>("MyType");
container.AddNewExtension<Interception>()
.Configure<Interception>()
.SetInterceptorFor<IMyType>(new InterfaceInterceptor());
当我用名称解析我的类型时,拦截不起作用。但是当我删除名称时,它会再次起作用。我的代码有什么问题?