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