Class XarLoadOptions
Class XarLoadOptions
名称: Aspose.Zip.Xar 組み合わせ: Aspose.Zip.dll (25.5.0)
アーカイブが圧縮されたファイルからアップロードされるオプション。
public class XarLoadOptions
Inheritance
相続人
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 < ProgressEventArgs >
Examples
XarArchive archive = new XarArchive("archive.xar",
new XarLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / ((XarFileEntry)s).Length); } })
Remarks
イベントメッセンジャーは、抽出が進歩している Aspose.Zip.Xar.XarFileEntry 例です。