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