3 writes to _compressedSize
WindowsBase (3)
Base\MS\Internal\IO\Zip\ZipIOLocalFileHeader.cs (3)
108header._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)
119if (header._compressedSize == UInt32.MaxValue) 151writer.Write(_compressedSize); 226return _compressedSize;