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)
452
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
454
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
456
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
713
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
908
Debug.Assert(
_compressedBytes
!= null);
909
foreach (byte[] compressedBytes in
_compressedBytes
)
System\IO\Compression\ZipArchiveEntry.cs (7)
953
for (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);
1764
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
1919
Debug.Assert(
_compressedBytes
!= null);
1920
foreach (byte[] compressedBytes in
_compressedBytes
)