This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,62 @@
using System;
namespace ICSharpCode.SharpZipLib.Zip
{
// Token: 0x0200007A RID: 122
public class DescriptorData
{
// Token: 0x17000110 RID: 272
// (get) Token: 0x060004A1 RID: 1185 RVA: 0x00016CAE File Offset: 0x00015CAE
// (set) Token: 0x060004A2 RID: 1186 RVA: 0x00016CB6 File Offset: 0x00015CB6
public long CompressedSize
{
get
{
return this.compressedSize;
}
set
{
this.compressedSize = value;
}
}
// Token: 0x17000111 RID: 273
// (get) Token: 0x060004A3 RID: 1187 RVA: 0x00016CBF File Offset: 0x00015CBF
// (set) Token: 0x060004A4 RID: 1188 RVA: 0x00016CC7 File Offset: 0x00015CC7
public long Size
{
get
{
return this.size;
}
set
{
this.size = value;
}
}
// Token: 0x17000112 RID: 274
// (get) Token: 0x060004A5 RID: 1189 RVA: 0x00016CD0 File Offset: 0x00015CD0
// (set) Token: 0x060004A6 RID: 1190 RVA: 0x00016CD8 File Offset: 0x00015CD8
public long Crc
{
get
{
return this.crc;
}
set
{
this.crc = value & (long)((ulong)(-1));
}
}
// Token: 0x0400030F RID: 783
private long size;
// Token: 0x04000310 RID: 784
private long compressedSize;
// Token: 0x04000311 RID: 785
private long crc;
}
}