Exemplo n.º 1
0
 public ChildSeed(ChildField field, long?offset, int count, bool isSibling)
 {
     if (offset.HasValue && offset.Value < 0)
     {
         throw new ArgumentOutOfRangeException("offset");
     }
     _field     = field;
     _offset    = offset;
     _count     = count;
     _isSibling = isSibling;
 }
Exemplo n.º 2
0
 public ChildSeed(ChildField field, long? offset, int count, bool isSibling)
 {
     if (offset.HasValue && offset.Value < 0)
         throw new ArgumentOutOfRangeException("offset");
     _field = field;
     _offset = offset;
     _count = count;
     _isSibling = isSibling;
 }