I am trying to use Spring.NET AOP support to make dependency / inversion of control / aspect-oriented programming (sorry for a lot of words) - maybe I will post a separate question asking someone to clarify the difference :)).
In particular, I want to intercept a call to a recursive method, so that every time a method is called, an AOP tip / interceptor is called.
Spring.Net does not intercept anything except the very first method call. I think Spring.Net supports exactly one chain of interceptors per instance and no longer intercepts calls until this first method call completes.
Does anyone have any information on how to fire an interceptor (tip) to call EACH method, including recursive calls?
I can provide code / example output if this is helpful. Thanks!
Mike
source
share