3 namespace AopAlliance
.Intercept
6 /// <p>Description of an invocation to a constuctor, given to an interceptor upon construtor-call.</p>
7 /// <p>A constructor invocation is a joinpoint and can be intercepted by a constructor interceptor.</p>
9 /// <seealso cref="AopAlliance.Intercept.IConstructorInterceptor"/>
11 public interface IConstructorInvocation
: IInvocation
14 /// <p>Gets the constructor being called.</p>
15 /// <p>This method is a friendly implementation of the IJoinpoint.GetStaticPart() method (same result). </p>
17 /// <returns>The constructor being called.</returns>
18 System
.Reflection
.ConstructorInfo
GetConstructor();