Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ public enum ZipArchiveMode
/// </summary>
Read,
/// <summary>
/// Only supports the creation of new archives.
/// Only writing to newly created entries in the archive is permitted.
/// Each entry in the archive can only be opened for writing once.
/// If only one entry is written to at a time, data will be written to the underlying stream or file as soon as it is available.
/// Only supports appending new entries to a new or existing archive. Only writing to these newly-created entries is permitted.
/// Each such entry can only be opened for writing once, and only one entry may be open at a time.
/// Data written to entries will be directly written through to the underlying stream or file.
/// The underlying stream must be writable, but need not be seekable.
/// </summary>
Create,
Expand Down