ArchiveLoadOptions.EntryExtractionProgressed
ArchiveLoadOptions.EntryExtractionProgressed property
Haalt of stelt de gemachtigde in die wordt aangeroepen wanneer enkele bytes zijn geëxtraheerd.
public EventHandler<ProgressEventArgs> EntryExtractionProgressed { get; set; }
Opmerkingen
Gebeurtenisafzender is deArchiveEntry
instantie welke extractie wordt uitgevoerd.
Voorbeelden
Archive archive = new Archive("archive.zip",
new ArchiveLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / ((ArchiveEntry)s).UncompressedSize); } })
Zie ook
- class ProgressEventArgs
- class ArchiveLoadOptions
- naamruimte Aspose.Zip
- montage Aspose.Zip