IExtractionListener.cs 276 B

12345678
  1. namespace SharpCompress.Common
  2. {
  3. internal interface IExtractionListener
  4. {
  5. void FireFilePartExtractionBegin(string name, long size, long compressedSize);
  6. void FireCompressedBytesRead(long currentPartCompressedBytes, long compressedReadBytes);
  7. }
  8. }