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)
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)
938
Debug.Assert(
_compressedBytes
!= null);
939
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);
1792
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
1947
Debug.Assert(
_compressedBytes
!= null);
1948
foreach (byte[] compressedBytes in
_compressedBytes
)