是否可以使用WindsorContainer的Instance方法配置Castle Dynamic Proxy?

时间:2012-12-10 23:34:33

标签: castle-windsor castle-dynamicproxy

...或者Castle需要控制构造过程才能用代理包装对象吗?

我尝试了一些不同的配置 - 下面是我正在使用的配置,但是在我请求对象时没有应用Interceptor:

container.Kernel.Register(Component.For<IMyService>()
            .Instance(myService)
            .Interceptors(InterceptorReference.ForType<MyServiceProxy>()).Last,
        Component.For<MyServiceProxy>()
);

1 个答案:

答案 0 :(得分:0)

不,默认InstanceActivator不支持代理。