ZipArchiveMode Enumeration

Namespace:  Microsoft.TeamFoundation.Server.Core
Assembly:  Microsoft.TeamFoundation.Server.Core (in Microsoft.TeamFoundation.Server.Core.dll)

Syntax

'Declaration
Public Enumeration ZipArchiveMode
public enum ZipArchiveMode
public enum class ZipArchiveMode
type ZipArchiveMode
public enum ZipArchiveMode

Members

Member name Description
Create 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. The underlying stream must be writeable, but need not be seekable.

Read Only reading entries from the archive is permitted. If the underlying file or stream is seekable, then files will be read from the archive on-demand as they are requested. If the underlying file or stream is not seekable, the entire archive will be held in memory. Requires that the underlying file or stream is readable.

Update Reading and writing from entries in the archive is permitted. Requires that the contents of the entire archive be held in memory. The underlying file or stream must be readable, writeable and seekable. No data will be written to the underlying file or stream until the archive is disposed.

See Also

Reference

Microsoft.TeamFoundation.Server.Core Namespace