3 references to OpenAsync
System.IO.Compression.ZipFile (3)
System\IO\Compression\ZipFile.Create.Async.cs (2)
74
public static Task<ZipArchive> OpenAsync(string archiveFileName, ZipArchiveMode mode, CancellationToken cancellationToken = default) =>
OpenAsync
(archiveFileName, mode, entryNameEncoding: null, cancellationToken);
437
ZipArchive archive = await
OpenAsync
(destinationArchiveFileName, ZipArchiveMode.Create, entryNameEncoding, cancellationToken).ConfigureAwait(false);
System\IO\Compression\ZipFile.Extract.Async.cs (1)
197
ZipArchive archive = await
OpenAsync
(sourceArchiveFileName, ZipArchiveMode.Read, entryNameEncoding, cancellationToken).ConfigureAwait(false);