Class IsoLoadOptions
Class IsoLoadOptions
Pôvodný názov: Aspose.Zip.Iso Zhromaždenie: Aspose.Zip.dll (25.5.0)
Možnosti, s ktorými sa Aspose.Zip.Iso.IsArchive načíta z komprimovaného súboru.
public class IsoLoadOptions
Inheritance
Z dedičných členov
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
IsoLoadOptions()
public IsoLoadOptions()
Properties
EntryExtractionProgressed
Získať alebo nastaviť delegát pozvaný, keď niektoré bajty boli vytiahnuté.
public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }
Hodnota nehnuteľnosti
EventHandler < ProgressEventArgs >
Examples
IsoArchive archive = new IsoArchive("archive.iso",
new IsoLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / length); } })
Remarks
Odosielateľ udalostí je príklad Aspose.Zip.Iso.IsoEntry, ktorého extrakcia je pokročilá.