Added container accessor to Castle.Core
[castle.git] / AspectSharp / AopAlliance / Intercept / IInvocation.cs
blob2106d9a462d11441d8ff8af9c2b8edf0cf695d9f
1 using System;
3 namespace AopAlliance.Intercept
5 /// <summary>
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>
8 /// </summary>
9 public interface IInvocation : IJoinpoint
11 /// <summary>
12 /// Get the arguments as an array object. It is possible to change element values within this array to change the arguments.
13 /// </summary>
14 object[] Arguments { get; }