示例#1
0
 public MethodInteception(Delegate action, MethodInteceptionType mode, MethodInfo method)
 {
     this.action = action;
     this.mode   = mode;
     this.method = method;
 }
示例#2
0
 public MethodInteception(Delegate action, MethodInteceptionType mode) : this(action, mode, null)
 {
 }