public CollectionSizeRelativeMemberInfo(int size, Type rootType, Type targetType, CallChain callChain) : base(rootType, targetType, callChain)
 {
     this.Size = size;
 }
예제 #2
0
 protected BaseRelativeMemberInfo(Type rootType, Type targetType, CallChain callChain)
 {
     this.RootType   = rootType;
     this.TargetType = targetType;
     this.CallChain  = callChain;
 }
예제 #3
0
 public FillerRelativeMemberInfo(Func <IObjectCreationContext, object> factoryFunc, CallChain chain, Type rootType, Type targetType) : base(rootType, targetType, chain)
 {
     this.factoryFunc = factoryFunc;
 }