Class XarLoadOptions
Class XarLoadOptions
Název místa: Aspose.Zip.Xar Sbírka: Aspose.Zip.dll (25.5.0)
Možnosti, se kterými je archiv stažen z komprimovaného souboru.
public class XarLoadOptions
Inheritance
Dědiční členové
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
XarLoadOptions()
public XarLoadOptions()
Properties
EntryExtractionProgressed
Obdrží nebo položí delegát pozvaný, když některé bajty byly extrahovány.
public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }
Hodnota nemovitosti
EventHandler < ProgressEventArgs >
Examples
XarArchive archive = new XarArchive("archive.xar",
new XarLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / ((XarFileEntry)s).Length); } })
Remarks
Odesílatel událostí je příklad Aspose.Zip.Xar.XarFileEntry, jehož extrakce je pokročil.