6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
478
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
1039
_compressedBytes
= null;
System\IO\Compression\ZipArchiveEntry.cs (4)
128
_compressedBytes
= null;
185
_compressedBytes
= null;
963
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
2165
_compressedBytes
= null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
482
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
484
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
486
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
743
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
939
Debug.Assert(
_compressedBytes
!= null);
940
foreach (byte[] compressedBytes in
_compressedBytes
)
System\IO\Compression\ZipArchiveEntry.cs (7)
967
for (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);
1799
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
1955
Debug.Assert(
_compressedBytes
!= null);
1956
foreach (byte[] compressedBytes in
_compressedBytes
)