6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
448_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1008_compressedBytes = null;
System\IO\Compression\ZipArchiveEntry.cs (4)
128_compressedBytes = null; 185_compressedBytes = null; 949_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 2129_compressedBytes = null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
452for (int i = 0; i < _compressedBytes.Length - 1; i++) 454await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 456await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 713if (_storedUncompressedData != null || _compressedBytes != null) 908Debug.Assert(_compressedBytes != null); 909foreach (byte[] compressedBytes in _compressedBytes)
System\IO\Compression\ZipArchiveEntry.cs (7)
953for (int i = 0; i < _compressedBytes.Length - 1; i++) 955_archive.ArchiveStream.ReadAtLeast(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true); 957_archive.ArchiveStream.ReadAtLeast(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true); 1764if (_storedUncompressedData != null || _compressedBytes != null) 1919Debug.Assert(_compressedBytes != null); 1920foreach (byte[] compressedBytes in _compressedBytes)