2 writes to _base
System.IO.Compression (2)
System\IO\Compression\ZipCryptoStream.cs (2)
53
_base
= baseStream;
108
_base
= baseStream;
10 references to _base
System.IO.Compression (10)
System\IO\Compression\ZipCryptoStream.cs (10)
187
_base
.Write(header);
200
await
_base
.WriteAsync(header, cancellationToken).ConfigureAwait(false);
280
_base
.Flush();
296
int n =
_base
.Read(destination);
336
_base
.Write(workBuffer, 0, chunkSize);
359
_base
.Dispose();
380
await
_base
.DisposeAsync().ConfigureAwait(false);
404
int n = await
_base
.ReadAsync(buffer, cancellationToken).ConfigureAwait(false);
448
await
_base
.WriteAsync(workBuffer.AsMemory(0, chunkSize), cancellationToken).ConfigureAwait(false);
456
return
_base
.FlushAsync(cancellationToken);