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