Class ZstandardLoadOptions

Class ZstandardLoadOptions

Namespace: Aspose.Zip.Zstandard
Assembly: Aspose.Zip.dll (25.1.0)

Aspose.Zip.Zstandard.ZstandardArchive가 압축 파일에서 로드되는 옵션입니다. 추출 시 발생하는 이벤트를 포함합니다.

public class ZstandardLoadOptions

상속

objectZstandardLoadOptions

상속된 멤버

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

생성자

ZstandardLoadOptions()

public ZstandardLoadOptions()

ExtractionProgressed

일부 바이트가 추출될 때 호출되는 델리게이트를 가져오거나 설정합니다.

public event EventHandler<progresseventargs> ExtractionProgressed

이벤트 유형

EventHandler<ProgressEventArgs&gt;

예제

ZstandardArchive archive = new ZstandardArchive("archive.zst", 
new ZStandardLoadOptions() { EntryExtractionProgressed = (s, e) =&gt; { int percent = (int)((100 * e.ProceededBytes) / length); } })

비고

이벤트 발신자는 추출이 진행 중인 Aspose.Zip.Zstandard.ZstandardArchive 인스턴스입니다.

 한국어