internal ReadWriteExtractCallback(SevenZipSharedArchiveContext context) : base(context)
 {
     this.TerminateEvent = new ManualResetEvent(false);
     this.FinishedEvent = new ManualResetEvent(false);
     this.BeforeExtractItem = new AutoResetEvent(false);
     this.ConfirmExtractItem = new AutoResetEvent(false);
 }
 public ArchiveOpenCallback(IWin32Window owner, SevenZipSharedArchiveContext context)
 {
     this.Owner = owner;
     this.Context = context;
     this.ArchiveFileName = context.FileName;
     this.IsRarArchive = context.FormatInfo.KnownFormat == KnownSevenZipFormat.Rar;
 }
 internal SevenZipArchiveItem(SevenZipSharedArchiveContext context, uint index)
 {
     this.Context = context;
     this.Index = index;
 }
 internal SevenZipDeleteProcessor(SevenZipSharedArchiveContext context) : base(context)
 {
 }
 public SevenZipProcessor(SevenZipSharedArchiveContext context)
 {
     this.Context = context;
 }