2 writes to _base
System.IO.Compression (2)
System\IO\Compression\ZipCryptoStream.cs (2)
52
_base
= baseStream;
107
_base
= baseStream;
10 references to _base
System.IO.Compression (10)
System\IO\Compression\ZipCryptoStream.cs (10)
186
_base
.Write(header);
199
await
_base
.WriteAsync(header, cancellationToken).ConfigureAwait(false);
279
_base
.Flush();
295
int n =
_base
.Read(destination);
335
_base
.Write(workBuffer, 0, chunkSize);
358
_base
.Dispose();
379
await
_base
.DisposeAsync().ConfigureAwait(false);
403
int n = await
_base
.ReadAsync(buffer, cancellationToken).ConfigureAwait(false);
447
await
_base
.WriteAsync(workBuffer.AsMemory(0, chunkSize), cancellationToken).ConfigureAwait(false);
455
return
_base
.FlushAsync(cancellationToken);