3 writes to _compressedSize
WindowsBase (3)
Base\MS\Internal\IO\Zip\ZipIOLocalFileHeader.cs (3)
108
header.
_compressedSize
= reader.ReadUInt32();
346
_compressedSize
= UInt32.MaxValue;
355
_compressedSize
= (UInt32)compressedSize; // checked{} isn't required because of the checks above
3 references to _compressedSize
WindowsBase (3)
Base\MS\Internal\IO\Zip\ZipIOLocalFileHeader.cs (3)
119
if (header.
_compressedSize
== UInt32.MaxValue)
151
writer.Write(
_compressedSize
);
226
return
_compressedSize
;