Class XarLoadOptions
Class XarLoadOptions
Namn på plats: Aspose.Zip.Xar Sammanfattning: Aspose.Zip.dll (25.5.0)
Alternativ med vilka arkivet laddas från en komprimerad fil.
public class XarLoadOptions
Inheritance
Arvsmedlemmar
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
Få eller sätta delegaten inbjuds när vissa byter har tagits ut.
public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }
Fastighetsvärde
EventHandler ochlt; ProgressEventArgs >
Examples
XarArchive archive = new XarArchive("archive.xar",
new XarLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / ((XarFileEntry)s).Length); } })
Remarks
Event-sändaren är Aspose.Zip.Xar.XarFileEntry-instans vars utvinning utvecklas.