3 references to OpenAsync
System.IO.Compression (1)
System\IO\Compression\ZipArchiveEntry.Async.cs (1)
51
/// <item><description><see cref="ZipArchiveMode.Update"/>: All values are allowed. <see cref="FileAccess.Read"/> reads directly from the archive. <see cref="FileAccess.Write"/> discards existing content and provides an empty writable stream. <see cref="FileAccess.ReadWrite"/> loads existing content into memory (equivalent to <see cref="
OpenAsync
(CancellationToken)"/>).</description></item>
System.IO.Compression.ZipFile (2)
System\IO\Compression\ZipFileExtensions.ZipArchive.Create.Async.cs (1)
92
Stream es = await entry.
OpenAsync
(cancellationToken).ConfigureAwait(false);
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.Async.cs (1)
79
Stream es = await source.
OpenAsync
(cancellationToken).ConfigureAwait(false);