2 writes to _fileNameLength
WindowsBase (2)
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (2)
70
header.
_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)
78
header._fileName = reader.ReadBytes(header.
_fileNameLength
);
128
writer.Write(
_fileNameLength
);
137
Debug.Assert(
_fileNameLength
> 0); // we validate this for both parsing and API entry points
138
writer.Write(_fileName, 0,
_fileNameLength
);
200
return checked(_fixedMinimalRecordSize +
_fileNameLength
+ _extraField.Size + _fileCommentLength);
477
if (
_fileNameLength
!= _fileName.Length)