3 namespace AopAlliance
.Intercept
6 /// <p>Description of an invocation to a method, given to an interceptor upon method-call.</p>
7 /// <p>A method invocation is a joinpoint and can be intercepted by a method interceptor.</p>
9 /// <seealso cref="AopAlliance.Intercept.IMethodInterceptor"/>
11 public interface IMethodInvocation
: IInvocation
14 /// <p>Gets the method being called.</p>
15 /// <p>This method is a friendly implementation of the IJoinpoint.GetStaticPart() method (same result). </p>
17 System
.Reflection
.MethodBase Method { get; }