8 references to UncompressedSize
System.IO.Compression (8)
System\IO\Compression\ZipArchiveEntry.cs (1)
1096
const int Zip64SizesBufferLength = Zip64ExtraField.FieldLengths.
UncompressedSize
+ Zip64ExtraField.FieldLengths.CompressedSize;
System\IO\Compression\ZipBlocks.cs (6)
136
_size += FieldLengths.
UncompressedSize
;
198
const int MaximumExtraFieldLength = FieldLengths.
UncompressedSize
+ FieldLengths.CompressedSize + FieldLengths.LocalHeaderOffset + FieldLengths.StartDiskNumber;
224
if (data.Length < FieldLengths.
UncompressedSize
)
237
data = data.Slice(FieldLengths.
UncompressedSize
);
241
data = data.Slice(FieldLengths.
UncompressedSize
);
351
startOffset += FieldLengths.
UncompressedSize
;
System\IO\Compression\ZipBlocks.FieldLocations.cs (1)
23
public const int CompressedSize = UncompressedSize + FieldLengths.
UncompressedSize
;