vote up 1 vote down star

Hi all,

Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?

flag

52% accept rate
Not 100% but I think the sole requirement is that it is virtual. In that case it could be protected. – Martinho Fernandes Nov 3 at 18:11

1 Answer

vote up 1 vote down check

No it is not true.

The method must be accessible for generated proxy type, which means it must be virtual (or interface method) and it must not be private.

So protected and protected internal methods are good to go. Also internal methods from assembly visible to generated dynamic proxy assembly are OK.

link|flag

Your Answer

Get an OpenID
or

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