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; }
public PagedReceiver(TransmissionDoneStringDelegate stringDone, bool useCompression) : this(stringDone, null, useCompression) { }