3 writes to _fileComment
System.IO.Compression (3)
System\IO\Compression\ZipArchiveEntry.cs (3)
87
_fileComment
= cd.FileComment;
141
_fileComment
= Array.Empty<byte>();
206
_fileComment
= ZipHelper.GetEncodedTruncatedBytesFromString(value, _archive.EntryNameAndCommentEncoding, ushort.MaxValue, out bool isUTF8);
5 references to _fileComment
System.IO.Compression (5)
System\IO\Compression\ZipArchiveEntry.cs (5)
203
get => DecodeEntryString(
_fileComment
);
552
Debug.Assert(
_fileComment
.Length <= ushort.MaxValue);
554
writer.Write((ushort)
_fileComment
.Length);
568
if (
_fileComment
.Length > 0)
569
writer.Write(
_fileComment
);