5 writes to _uncompressedSize
System.IO.Compression (5)
System\IO\Compression\ZipBlocks.cs (5)
117
set {
_uncompressedSize
= value; UpdateSize(); }
186
zip64Field.
_uncompressedSize
= null;
202
zip64Block.
_uncompressedSize
= null;
236
zip64Block.
_uncompressedSize
= BinaryPrimitives.ReadInt64LittleEndian(data);
308
zip64Field.
_uncompressedSize
= null;
5 references to _uncompressedSize
System.IO.Compression (5)
System\IO\Compression\ZipBlocks.cs (5)
116
get { return
_uncompressedSize
; }
134
if (
_uncompressedSize
!= null)
285
if (zip64Block.
_uncompressedSize
< 0)
348
if (
_uncompressedSize
!= null)
350
BinaryPrimitives.WriteInt64LittleEndian(extraFieldData[startOffset..],
_uncompressedSize
.Value);