문제

container.RegisterType<IMyType, MyType>("MyType");

container.AddNewExtension<Interception>()
            .Configure<Interception>()
            .SetInterceptorFor<IMyType>(new InterfaceInterceptor());

When I Resolve my Type with a name,the Interception doesn't work. But when I remove the name,it will works again. what's wrong with my code?

도움이 되었습니까?

해결책

You did not specify which InterceptionBehavior you want to use. Setting up the interceptor does not add any behavior.

Have a look at the documentation on MSDN.

The section Unity 2.0 Approach contains a sample config.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top