Class XarLoadOptions

Class XarLoadOptions

Το όνομα: Aspose.Zip.Xar Συγκέντρωση: Aspose.Zip.dll (25.5.0)

Επιλογές με τις οποίες το αρχείο φορτώνεται από ένα συμπιεσμένο αρχείο.

public class XarLoadOptions

Inheritance

object XarLoadOptions

Κληρονομημένα μέλη

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

Αποκτά ή τοποθετεί το αντιπρόσωπο που καλείται όταν ορισμένα bytes έχουν αφαιρεθεί.

public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }

Αξία ιδιοκτησίας

EventHandler &lt · ProgressEventArgs >

Examples

XarArchive archive = new XarArchive("archive.xar", 
new XarLoadOptions() { EntryExtractionProgressed = (s, e) =&gt; { int percent = (int)((100 * e.ProceededBytes) / ((XarFileEntry)s).Length); } })

Remarks

Ο αποστολέας γεγονότων είναι η περίπτωση Aspose.Zip.Xar.XarFileEntry της οποίας η εξόρυξη προχωρά.

 Ελληνικά