6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
219_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 481_compressedBytes = null;
System\IO\Compression\ZipArchiveEntry.cs (4)
80_compressedBytes = null; 138_compressedBytes = null; 731_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1428_compressedBytes = null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
223for (int i = 0; i < _compressedBytes.Length - 1; i++) 225await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 227await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 361if (_storedUncompressedData != null || _compressedBytes != null) 391Debug.Assert(_compressedBytes != null); 392foreach (byte[] compressedBytes in _compressedBytes)
System\IO\Compression\ZipArchiveEntry.cs (7)
735for (int i = 0; i < _compressedBytes.Length - 1; i++) 737_archive.ArchiveStream.ReadAtLeast(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true); 739_archive.ArchiveStream.ReadAtLeast(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true); 1201if (_storedUncompressedData != null || _compressedBytes != null) 1232Debug.Assert(_compressedBytes != null); 1233foreach (byte[] compressedBytes in _compressedBytes)