6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
219_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 485_compressedBytes = null;
System\IO\Compression\ZipArchiveEntry.cs (4)
81_compressedBytes = null; 139_compressedBytes = null; 732_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1469_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)
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); 1238if (_storedUncompressedData != null || _compressedBytes != null) 1269Debug.Assert(_compressedBytes != null); 1270foreach (byte[] compressedBytes in _compressedBytes)