Specifies when changes are written to the underlying stream.

Namespace:  Rebex.IO.Compression
Assembly:  Rebex.Zip (in Rebex.Zip.dll) Version: 1.0.4086.0

Syntax

C#
public enum ArchiveSaveMode
Visual Basic (Declaration)
Public Enumeration ArchiveSaveMode
Visual C++
public enum class ArchiveSaveMode

Members

Member nameDescription
Immediate
All changes are saved immediately.
Delayed
Only compressed data is written to the underlying stream immediately. All changes are written only when calling the Save()()() or Close(ArchiveSaveAction) method.

See Also