3 namespace AopAlliance
.Intercept
6 /// <p>This interface represents an invocation in the program.</p>
7 /// <p>An invocation is a joinpoint and can be intercepted by an interceptor.</p>
9 public interface IInvocation
: IJoinpoint
12 /// Get the arguments as an array object. It is possible to change element values within this array to change the arguments.
14 object[] Arguments { get; }