ZipOption Enumeration
From DotNetZip
An enum representing the values on a three-way toggle switch
for various options in the library. This might be used to
specify whether to employ a particular text encoding, or to use
ZIP64 extensions, or some other option.
| C# | Visual Basic | Visual C++ |
public enum ZipOption
Public Enumeration ZipOption
public enum class ZipOption
| Member | Description |
|---|---|
| Default |
The default behavior. This is the same as "Never".
(For COM clients, this is a 0 (zero).)
|
| Never |
Never use the associated option.
(For COM clients, this is a 0 (zero).)
|
| AsNecessary |
Use the associated behavior "as necessary."
(For COM clients, this is a 1.)
|
| Always |
Use the associated behavior Always, whether necessary or not.
(For COM clients, this is a 2.)
|