Files
sharpcompress/SharpCompress
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
..
2015-07-15 13:44:20 +01:00
2013-07-27 12:06:54 +01:00
2013-12-19 10:34:59 +00:00
2013-04-07 10:58:58 +01:00
2015-06-12 12:03:03 +01:00
2013-12-15 11:42:54 +00:00