8 references to ZipArchive
System.IO.Compression (5)
System\IO\Compression\ZipArchive.cs (4)
45
public ZipArchive(Stream stream) :
this
(stream, ZipArchiveMode.Read, leaveOpen: false, entryNameEncoding: null) { }
56
public ZipArchive(Stream stream, ZipArchiveMode mode) :
this
(stream, mode, leaveOpen: false, entryNameEncoding: null) { }
68
public ZipArchive(Stream stream, ZipArchiveMode mode, bool leaveOpen) :
this
(stream, mode, leaveOpen, entryNameEncoding: null) { }
217
/// The comment encoding is determined by the <c>entryNameEncoding</c> parameter of the <see cref="
ZipArchive
(Stream,ZipArchiveMode,bool,Encoding?)"/> constructor.
System\IO\Compression\ZipArchiveEntry.cs (1)
197
///The comment encoding is determined by the <c>entryNameEncoding</c> parameter of the <see cref="
ZipArchive
(Stream,ZipArchiveMode,bool,Encoding?)"/> constructor.
System.IO.Compression.ZipFile (3)
System\IO\Compression\ZipFile.Create.cs (2)
185
return new
ZipArchive
(fs, mode, leaveOpen: false, entryNameEncoding: entryNameEncoding);
466
using ZipArchive archive = new
ZipArchive
(destination, ZipArchiveMode.Create, leaveOpen: true, entryNameEncoding);
System\IO\Compression\ZipFile.Extract.cs (1)
328
using ZipArchive archive = new
ZipArchive
(source, ZipArchiveMode.Read, leaveOpen: true, entryNameEncoding);