6 writes to _compressedBytes
System.IO.Compression (6)
System\IO\Compression\ZipArchiveEntry.Async.cs (2)
225
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
475
_compressedBytes
= null;
System\IO\Compression\ZipArchiveEntry.cs (4)
80
_compressedBytes
= null;
138
_compressedBytes
= null;
733
_compressedBytes
= LoadCompressedBytesIfNeededInitialize(out int maxSingleBufferSize);
1403
_compressedBytes
= null;
14 references to _compressedBytes
System.IO.Compression (14)
System\IO\Compression\ZipArchiveEntry.Async.cs (7)
229
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
231
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
233
await _archive.ArchiveStream.ReadAtLeastAsync(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true, cancellationToken).ConfigureAwait(false);
355
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
385
Debug.Assert(
_compressedBytes
!= null);
386
foreach (byte[] compressedBytes in
_compressedBytes
)
System\IO\Compression\ZipArchiveEntry.cs (7)
737
for (int i = 0; i <
_compressedBytes
.Length - 1; i++)
739
_archive.ArchiveStream.ReadAtLeast(
_compressedBytes
[i], maxSingleBufferSize, throwOnEndOfStream: true);
741
_archive.ArchiveStream.ReadAtLeast(
_compressedBytes
[
_compressedBytes
.Length - 1], (int)(_compressedSize % maxSingleBufferSize), throwOnEndOfStream: true);
1176
if (_storedUncompressedData != null ||
_compressedBytes
!= null)
1207
Debug.Assert(
_compressedBytes
!= null);
1208
foreach (byte[] compressedBytes in
_compressedBytes
)