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