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; 733_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1403_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)
737for (int i = 0; i < _compressedBytes.Length - 1; i++) 739_archive.ArchiveStream.ReadAtLeast(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true); 741_archive.ArchiveStream.ReadAtLeast(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true); 1176if (_storedUncompressedData != null || _compressedBytes != null) 1207Debug.Assert(_compressedBytes != null); 1208foreach (byte[] compressedBytes in _compressedBytes)