ZipArchive.Mode Property

Definition

Gets a value that describes the type of action the zip archive can perform on entries.

public:
 property System::IO::Compression::ZipArchiveMode Mode { System::IO::Compression::ZipArchiveMode get(); };
public System.IO.Compression.ZipArchiveMode Mode { get; }
member this.Mode : System.IO.Compression.ZipArchiveMode
Public ReadOnly Property Mode As ZipArchiveMode

Property Value

One of the enumeration values that describes the type of action (read, create, or update) the zip archive can perform on entries.

Remarks

You specify a value for the ZipArchive property when you create an instance of the ZipArchive class. Use the ZipArchive(Stream, ZipArchiveMode) or ZipArchive(Stream, ZipArchiveMode, Boolean) constructor to provide a value for the Mode property.

Applies to