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