1 write to _zipFileCommentLength
WindowsBase (1)
Base\MS\Internal\IO\Zip\ZipIOEndOfCentralDirectoryBlock.cs (1)
387
_zipFileCommentLength
= reader.ReadUInt16();
6 references to _zipFileCommentLength
WindowsBase (6)
Base\MS\Internal\IO\Zip\ZipIOEndOfCentralDirectoryBlock.cs (6)
55
return _fixedMinimalRecordSize +
_zipFileCommentLength
;
99
writer.Write(
_zipFileCommentLength
);
100
if (
_zipFileCommentLength
> 0)
102
writer.Write(_zipFileComment, 0,
_zipFileCommentLength
);
388
_zipFileComment = reader.ReadBytes(
_zipFileCommentLength
);
414
if (
_zipFileCommentLength
!= _zipFileComment.Length)