4 references to EntryNameEncoding
System.IO.Compression.ZipFile (4)
System\IO\Compression\ZipFile.Create.Async.cs (2)
453
ZipArchive archive = await OpenAsync(destinationArchiveFileName, ZipArchiveMode.Create, options.
EntryNameEncoding
, cancellationToken).ConfigureAwait(false);
480
ZipArchive archive = await ZipArchive.CreateAsync(destination, ZipArchiveMode.Create, leaveOpen: true, options.
EntryNameEncoding
, cancellationToken).ConfigureAwait(false);
System\IO\Compression\ZipFile.Create.cs (2)
421
using ZipArchive archive = Open(destinationArchiveFileName, ZipArchiveMode.Create, options.
EntryNameEncoding
);
443
using ZipArchive archive = new ZipArchive(destination, ZipArchiveMode.Create, leaveOpen: true, options.
EntryNameEncoding
);