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