public Find3Invo(GenInterfaceWithGenericTypesImpl target,
                  IInterceptor[] interceptors, Type targetType,
                  MethodInfo targetMethod, MethodInfo interfMethod, object[] arguments)
     : base(target, interceptors, interfMethod, arguments)
 {
     this.target = target;
 }
コード例 #2
0
 public Proxy(IInterceptor[] interceptors, GenInterfaceWithGenericTypesImpl target)
 {
     this.interceptors = interceptors;
     this.target       = target;
 }