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