How can I express a point cut that finds methods only when being called from within another method, but not directly?
For example:
Foo() calls Bar() calls object.Method()
also
NotFoo() calls Bar() calls object.Method()
I only want the pointcut to work for within Foo()
I tried "withincode," but that seems to only work directly.
Thanks Eric