IArchiveExtractionListener.cs 306 B

1234567891011
  1. using SharpCompress.Common;
  2. namespace SharpCompress.Archives
  3. {
  4. internal interface IArchiveExtractionListener : IExtractionListener
  5. {
  6. void EnsureEntriesLoaded();
  7. void FireEntryExtractionBegin(IArchiveEntry entry);
  8. void FireEntryExtractionEnd(IArchiveEntry entry);
  9. }
  10. }