Ejemplo n.º 1
0
 public ObjectChecker(DPropertyInfo info)
     : this(info, false)
 {
 }
Ejemplo n.º 2
0
 public ObjectChecker(DPropertyInfo info, bool exactType, bool onlyVisibleChildren)
     : base(typeof(T), info)
 {
     this.exactType           = exactType;
     this.onlyVisibleChildren = onlyVisibleChildren;
 }
Ejemplo n.º 3
0
 public DObjectChecker(Type dObjectType, DPropertyInfo info)
     : this(dObjectType, new DPropertyInfo[] { info })
 {
 }
Ejemplo n.º 4
0
 public ObjectChecker(DPropertyInfo info, bool exactType)
     : this(info, exactType, false)
 {
 }