Exemplo n.º 1
0
 private PagedReceiver(TransmissionDoneStringDelegate stringDone, TransmissionDoneBlobDelegate blobDone, bool useCompression)
 {
     this.stringDoneDelegate = stringDone;
     this.blobDoneDelegate   = blobDone;
     this.useCompression     = useCompression;
     this.chunks             = new List <byte[]>();
     this.totalDataSize      = 0;
 }
Exemplo n.º 2
0
 public PagedReceiver(TransmissionDoneBlobDelegate blobDone, bool useCompression) : this(null, blobDone, useCompression)
 {
 }