public static object AroundConstructor(ConstructorJoinPoint jp) { jp[0] = "intercepted " + jp[0]; return jp.Proceed(); }
public static object Intercepted(ConstructorJoinPoint jp) { return null; }