6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
169_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 410_compressedBytes = null;
System\IO\Compression\ZipArchiveEntry.cs (4)
80_compressedBytes = null; 138_compressedBytes = null; 675_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1326_compressedBytes = null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
173for (int i = 0; i < _compressedBytes.Length - 1; i++) 175await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 177await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 290if (_storedUncompressedData != null || _compressedBytes != null) 320Debug.Assert(_compressedBytes != null); 321foreach (byte[] compressedBytes in _compressedBytes)
System\IO\Compression\ZipArchiveEntry.cs (7)
679for (int i = 0; i < _compressedBytes.Length - 1; i++) 681_archive.ArchiveStream.ReadAtLeast(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true); 683_archive.ArchiveStream.ReadAtLeast(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true); 1099if (_storedUncompressedData != null || _compressedBytes != null) 1130Debug.Assert(_compressedBytes != null); 1131foreach (byte[] compressedBytes in _compressedBytes)