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