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