Example #1
0
 public PostInterceptArgs(InterceptArgs e, object val) : this(e)
 {
     Value = val;
 }
Example #2
0
 public PostInterceptArgs(InterceptArgs e) : base(e)
 {
 }
Example #3
0
 public PreInterceptArgs(InterceptArgs e) : base(e)
 {
 }
Example #4
0
 public InterceptArgs(InterceptArgs e)
     : this(e.MethodName, e.Arguments)
 {
 }
Example #5
0
 public ExceptionInterceptArgs(InterceptArgs e, Exception ex)
     : this(e)
 {
     Ex = ex;
 }
Example #6
0
 public ExceptionInterceptArgs(InterceptArgs e) : base(e)
 {
 }