Class Bzip2LoadOptions

Class Bzip2LoadOptions

名称: Aspose.Zip.Bzip2 組み合わせ: Aspose.Zip.dll (25.5.0)

Aspose.Zip.Bzip2.Bzip2Archive をアップロードするためのオプション エクストラクションでアップロードされたイベントを含みます。

public class Bzip2LoadOptions

Inheritance

object Bzip2LoadOptions

相続人

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

Bzip2LoadOptions()

public Bzip2LoadOptions()

ExtractionProgressed

イベントは、いくつかのバイトが抽出されたときに呼びかけられました。

public event EventHandler<progresseventargs> ExtractionProgressed

イベントタイプ

EventHandler < ProgressEventArgs >

Examples

Bzip2LoadOptions loadOptions = new Bzip2LoadOptions(); 
loadOptions.ExtractionProgressed += (s, e) =&gt; { percent = (int) ((double)(100 * e.ProceededBytes) / originalFileLength); };

Remarks

イベントメッセンジャーは、抽出が進歩している Aspose.Zip.Bzip2.Bzip2Archive 例です. The Aspose.Zip.ProgressEventArgs.ProceededBytes is the number of bytes after extraction.

 日本語