Files
sharpcompress/SharpCompress/Reader
Paul Newman 8faebc78d0 Cancel moved from EntryStream to Reader
Relates to previous commit. Following discussion with Adam, moved the Cancel() to the reader.

Example:

while (reader.MoveToNextEntry())
{
  using (var data = new StreamReader(reader.OpenEntryStream()))
  {
    try
    {
      DoSomething(data.ReadLine());
    }
    catch
    {
      reader.Cancel();
      throw;
    }
  }
}
2015-07-15 18:13:46 +01:00
..
2013-04-28 12:32:55 +01:00
2015-07-15 13:44:20 +01:00
2013-04-28 12:32:55 +01:00
2013-04-28 12:32:55 +01:00