2 writes to _fileCommentLength
WindowsBase (2)
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (2)
43
header.
_fileCommentLength
=0;
72
header.
_fileCommentLength
= reader.ReadUInt16();
6 references to _fileCommentLength
WindowsBase (6)
Base\MS\Internal\IO\Zip\ZipIOCentralDirectoryFileHeader.cs (6)
107
header._fileComment = reader.ReadBytes(header.
_fileCommentLength
);
130
writer.Write(
_fileCommentLength
);
142
if (
_fileCommentLength
> 0)
144
writer.Write(_fileComment , 0,
_fileCommentLength
);
200
return checked(_fixedMinimalRecordSize + _fileNameLength + _extraField.Size +
_fileCommentLength
);
497
if (
_fileCommentLength
!= _fileComment.Length)