6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
225_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 475_compressedBytes = null;
System\IO\Compression\ZipArchiveEntry.cs (4)
80_compressedBytes = null; 138_compressedBytes = null; 732_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1402_compressedBytes = null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
229for (int i = 0; i < _compressedBytes.Length - 1; i++) 231await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 233await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 355if (_storedUncompressedData != null || _compressedBytes != null) 385Debug.Assert(_compressedBytes != null); 386foreach (byte[] compressedBytes in _compressedBytes)
System\IO\Compression\ZipArchiveEntry.cs (7)
736for (int i = 0; i < _compressedBytes.Length - 1; i++) 738_archive.ArchiveStream.ReadAtLeast(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true); 740_archive.ArchiveStream.ReadAtLeast(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true); 1175if (_storedUncompressedData != null || _compressedBytes != null) 1206Debug.Assert(_compressedBytes != null); 1207foreach (byte[] compressedBytes in _compressedBytes)