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

دریافت یا قرار دادن نماینده دعوت شده هنگامی که برخی از بایت ها استخراج شده است.

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 است که استخراج آن پیشرفت می کند.

 فارسی