Class IsoLoadOptions
Class IsoLoadOptions
名称: Aspose.Zip.Iso 收藏: Aspose.Zip.dll (25.5.0)
选项 Aspose.Zip.Iso.IsoArchive 从压缩文件上加载。
public class IsoLoadOptions
Inheritance
继承人
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
IsoLoadOptions()
public IsoLoadOptions()
Properties
EntryExtractionProgressed
收到或设置被召唤的代表,当某些比特被提取。
public EventHandler<progresseventargs> EntryExtractionProgressed { get; set; }
财产价值
EventHandler < ProgressEventArgs >
Examples
IsoArchive archive = new IsoArchive("archive.iso",
new IsoLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / length); } })
Remarks
事件发送器是 Aspose.Zip.Iso.IsoEntry 例子,其提取正在进行中。