Class Bzip2LoadOptions
Class Bzip2LoadOptions
이름 공간 : Aspose.Zip.Bzip2 모임: Aspose.Zip.dll (25.5.0)
업로드 옵션 Aspose.Zip.Bzip2.Bzip2Archive. 추출에 업로드 된 이벤트를 포함합니다.
public class Bzip2LoadOptions
Inheritance
상속 회원들
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) => { percent = (int) ((double)(100 * e.ProceededBytes) / originalFileLength); };
Remarks
이벤트 송신자는 Aspose.Zip.Bzip2.Bzip2Archive 인스턴스 추출이 진행되고 있습니다.The Aspose.Zip.ProgressEventArgs.ProceededBytes는 추출 후 바이트의 수입니다.