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 예제입니다.