15 references to Zip64FileFormat
WindowsBase (15)
Base\MS\Internal\IO\Zip\ZipArchive.cs (1)
383
case (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
: break;
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (4)
48
header._versionMadeBy = (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
82
if (header._versionNeededToExtract >= (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
)
366
_versionNeededToExtract = (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
491
if ((_versionNeededToExtract < (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
) &&
Base\MS\Internal\IO\Zip\ZipIOLocalFileDataDescriptor.cs (1)
106
if (versionNeededToExtract < (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
)
Base\MS\Internal\IO\Zip\ZipIOLocalFileHeader.cs (4)
65
header._versionNeededToExtract = (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
117
if (header._versionNeededToExtract >= (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
)
350
_versionNeededToExtract = (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
396
if ((_versionNeededToExtract < (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
) &&
Base\MS\Internal\IO\Zip\ZipIOZip64EndOfCentralDirectoryBlock.cs (5)
163
_versionMadeBy = (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
164
_versionNeededToExtract = (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
374
if (_versionNeededToExtract != (UInt16)ZipIOVersionNeededToExtract.
Zip64FileFormat
)
436
private UInt16 _versionMadeBy = (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
;
437
private UInt16 _versionNeededToExtract = (ushort)ZipIOVersionNeededToExtract.
Zip64FileFormat
;