2 writes to _fileNameLength
WindowsBase (2)
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (2)
70header._fileNameLength = reader.ReadUInt16(); 395_fileNameLength = (UInt16)fileBlock.FileName.Length; // this is safe cast as file name is always validate for size
6 references to _fileNameLength
WindowsBase (6)
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (6)
78header._fileName = reader.ReadBytes(header._fileNameLength); 128writer.Write(_fileNameLength); 137Debug.Assert(_fileNameLength > 0); // we validate this for both parsing and API entry points 138writer.Write(_fileName, 0, _fileNameLength); 200return checked(_fixedMinimalRecordSize + _fileNameLength + _extraField.Size + _fileCommentLength); 477if (_fileNameLength != _fileName.Length)