Class XarLoadOptions
Class XarLoadOptions
İsim alanı : Aspose.Zip.Xar Toplama: Aspose.Zip.dll (25.5.0)
Arşiv bir sıkıştırılmış dosyadan yüklendiği seçenekler.
public class XarLoadOptions
Inheritance
mirasçı üyeleri
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
Bazı baytlar çıkarıldığında çağrılan delegat alır veya yerleştirir.
public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }
Mülkiyet Değer
EventHandler < için; ProgressEventArgs >
Examples
XarArchive archive = new XarArchive("archive.xar",
new XarLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / ((XarFileEntry)s).Length); } })
Remarks
Etkinlik göndericisi Aspose.Zip.Xar.XarFileEntry örneğidir.