public override void OnInvoke(MethodInterceptionArgs args)
 {
     if (args.has_Arguments())
     {
         args.argument <UserActivity>().ga_LogEntry();
     }
     else
     {
         "[LogMethod]".ga_LogEntry(args.Method.Name);
     }
     args.Proceed();
 }
Beispiel #2
0
 public override void OnInvoke(MethodInterceptionArgs args)
 {
     if (args.has_Arguments())
     {
         args.argument<UserActivity>().ga_LogEntry();
     }
     else
         "[LogMethod]".ga_LogEntry(args.Method.Name);
     args.Proceed();
 }