6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
478_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 1038_compressedBytes = null;
System\IO\Compression\ZipArchiveEntry.cs (4)
128_compressedBytes = null; 185_compressedBytes = null; 963_compressedBytes = LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize); 2157_compressedBytes = null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
482for (int i = 0; i < _compressedBytes.Length - 1; i++) 484await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 486await _archive.ArchiveStream.ReadAtLeastAsync(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false); 743if (_storedUncompressedData != null || _compressedBytes != null) 938Debug.Assert(_compressedBytes != null); 939foreach (byte[] compressedBytes in _compressedBytes)
System\IO\Compression\ZipArchiveEntry.cs (7)
967for (int i = 0; i < _compressedBytes.Length - 1; i++) 969_archive.ArchiveStream.ReadAtLeast(_compressedBytes[i], maxSingleBufferSize, throwOnEndOfStream: true); 971_archive.ArchiveStream.ReadAtLeast(_compressedBytes[_compressedBytes.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true); 1792if (_storedUncompressedData != null || _compressedBytes != null) 1947Debug.Assert(_compressedBytes != null); 1948foreach (byte[] compressedBytes in _compressedBytes)