I'm trying to create a facility that will add some interceptor to the registered class based on the class attribute. This is my facility:

public class MyFacility : AbstractFacility
{
     protected override void Init()
    {
        this.Kernel.ComponentRegistered += (s, h) =>
        {
            if (h.ComponentModel.Implementation.GetCustomAttributes(typeof(MyAttribute), false).Length > 0)
            {
                h.ComponentModel.Interceptors.Add(InterceptorReference.ForType<MyInterceptor>());
            }
        }
    }
}

but this way, when I use the this keyword in a class method it refers to the target class not the proxy class and this makes some framework that I use don't work properly.

I need to create with a facility the same proxy that is generated with the ProxyGenerator.CreateClassProxy<MyClass>() method.

How can I achieve this?

link|improve this question

50% accept rate
Could you show more code? Is the component you are registering an interface or a class? – svick Jul 17 '11 at 12:30
the componenti I'm registering is an interface. Thi is the windsor installation: _wc = new WindsorContainer(); _wc.AddFacility<Facility>(); _wc.Register( Component.For<Authorize>() ); _wc.Register( Component.For<IService>(). ImplementedBy<Service>() ); – Gigitsu Jul 17 '11 at 12:47
feedback

1 Answer

up vote 0 down vote accepted

Expose the class as a service on your component.

container.Register(
   Component.For<SomeClass,ISomeInterface>().Lifestyle.Whatever.Interceptors<SomeInterceptor>()
);
link|improve this answer
how can i expose the class as a service? can you post an example please? – Gigitsu Jul 17 '11 at 12:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.