8 references to UncompressedSize
System.IO.Compression (8)
System\IO\Compression\ZipArchiveEntry.cs (1)
1157
private const int Zip64SizesBufferLength = Zip64ExtraField.FieldLengths.
UncompressedSize
+ Zip64ExtraField.FieldLengths.CompressedSize;
System\IO\Compression\ZipBlocks.cs (6)
160
_size += FieldLengths.
UncompressedSize
;
223
const int MaximumExtraFieldLength = FieldLengths.
UncompressedSize
+ FieldLengths.CompressedSize + FieldLengths.LocalHeaderOffset + FieldLengths.StartDiskNumber;
250
if (data.Length < FieldLengths.
UncompressedSize
)
263
data = data.Slice(FieldLengths.
UncompressedSize
);
267
data = data.Slice(FieldLengths.
UncompressedSize
);
377
startOffset += FieldLengths.
UncompressedSize
;
System\IO\Compression\ZipBlocks.FieldLocations.cs (1)
23
public const int CompressedSize = UncompressedSize + FieldLengths.
UncompressedSize
;