How can I express a point that finds methods only when called from another method, but not directly?
For instance:
Foo() calls Bar() calls object.Method()
and
NotFoo() calls Bar() calls object.Method()
I want pointcut to work inside Foo ()
I tried the "internal code", but this only works directly.
Thanks Eric
source share