6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
219
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
481
_compressedBytes
= null;
System\IO\Compression\ZipArchiveEntry.cs (4)
80
_compressedBytes
= null;
138
_compressedBytes
= null;
731
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
1428
_compressedBytes
= null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
223
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
225
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
227
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
361
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
391
Debug.Assert(
_compressedBytes
!= null);
392
foreach (byte[] compressedBytes in
_compressedBytes
)
System\IO\Compression\ZipArchiveEntry.cs (7)
735
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
737
_archive.ArchiveStream.ReadAtLeast(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true);
739
_archive.ArchiveStream.ReadAtLeast(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true);
1201
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
1232
Debug.Assert(
_compressedBytes
!= null);
1233
foreach (byte[] compressedBytes in
_compressedBytes
)