5 writes to _compressedSize
System.IO.Compression (5)
System\IO\Compression\ZipBlocks.cs (5)
111set { _compressedSize = value; UpdateSize(); } 162zip64Field._compressedSize = null; 177zip64Block._compressedSize = null; 221zip64Block._compressedSize = reader.ReadInt64(); 267zip64Field._compressedSize = null;
5 references to _compressedSize
System.IO.Compression (5)
System\IO\Compression\ZipBlocks.cs (5)
110get { return _compressedSize; } 124if (_compressedSize != null) _size += 8; 254if (zip64Block._compressedSize < 0) throw new InvalidDataException(SR.FieldTooBigCompressedSize); 314if (_compressedSize != null) writer.Write(_compressedSize.Value);