コード例 #1
0
 public InterceptorInfo(Type interceptorType, InterceptorInjectionMode mode, bool eatException)
 {
     Interceptor = interceptorType;
     Mode = mode;
     EatException = eatException;
 }
コード例 #2
0
 public InterceptorInfo(Type interceptorType, InterceptorInjectionMode mode)
     : this(interceptorType, mode, false)
 {
 }