Skip to content

Releases: hkutluay/ZipContent.Core

1.2.0

02 Jan 18:53
7129d1f
Compare
Choose a tag to compare

Code refactor

Breaking change:

  • ZipContentLister needs IPartialReader implementation on constructor.

Old usage (before v1.2.0):

var partialReader = new PartialFileReader("ZipFiles", "zero-file.zip");
var _lister = new ZipContentLister();
await _lister.GetContents(partialReader);

New (after v1.2.0):

var partialReader = new PartialFileReader("ZipFiles", "zero-file.zip");
var lister = new ZipContentLister(partialReader);
await lister.GetContents();

1.1.1

05 Dec 16:50
Compare
Choose a tag to compare

cancellationToken support added to ZipContentLister GetContents method

1.1.0

05 Dec 16:37
fc586b7
Compare
Choose a tag to compare

cancellationToken support added