The AOP (C #) implementation always intercepts the first (public) method call, but not the subsequent methods called in the first interception method, is this a limitation of the ContextBoundObject AOP implementation, or am I doing it wrong?
[InterceptMe]
public void MethodOne()
{
MethodTwo();
}
[InterceptMe]
public void MethodTwo()
{
}
Any ideas?
source
share