Table of Contents

Enum ZipEntrySource

Namespace
Ionic.Zip
Assembly
SunamoDotNetZip.dll

An enum that specifies the source of the ZipEntry.

public enum ZipEntrySource
Extension Methods

Fields

FileSystem = 1

The entry was instantiated by calling AddFile() or another method that added an entry from the filesystem.

JitStream = 5

The content for the ZipEntry will be obtained from the stream dispensed by the OpenDelegate. The entry was instantiated via AddEntry(string, OpenDelegate, CloseDelegate).

None = 0

Default value. Invalid on a bonafide ZipEntry.

Stream = 2

The entry was instantiated via AddEntry(string, string) or AddEntry(string, Stream) .

WriteDelegate = 4

The content for the ZipEntry will be or was provided by the WriteDelegate.

ZipFile = 3

The ZipEntry was instantiated by reading a zipfile.

ZipOutputStream = 6

The content for the ZipEntry will be or was obtained from a ZipOutputStream.