6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
169
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
410
_compressedBytes
= null;
System\IO\Compression\ZipArchiveEntry.cs (4)
80
_compressedBytes
= null;
138
_compressedBytes
= null;
675
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
1326
_compressedBytes
= null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
173
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
175
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
177
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
290
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
320
Debug.Assert(
_compressedBytes
!= null);
321
foreach (byte[] compressedBytes in
_compressedBytes
)
System\IO\Compression\ZipArchiveEntry.cs (7)
679
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
681
_archive.ArchiveStream.ReadAtLeast(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true);
683
_archive.ArchiveStream.ReadAtLeast(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true);
1099
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
1130
Debug.Assert(
_compressedBytes
!= null);
1131
foreach (byte[] compressedBytes in
_compressedBytes
)