Search code examples
castle-windsoraopinterceptorcastle-dynamicproxy

Register multiple interceptors in castle windsor fluent


How do I register multiple interceptors using the fluent API?


Solution

  • For a component?

    Component.For<Foo>().Interceptors<TestInterceptor1, TestInterceptor2>();