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