Enum ZipEntrySource
An enum that specifies the source of the ZipEntry.
public enum ZipEntrySource
- Extension Methods
Fields
FileSystem = 1The entry was instantiated by calling AddFile() or another method that added an entry from the filesystem.
JitStream = 5The content for the ZipEntry will be obtained from the stream dispensed by the
OpenDelegate. The entry was instantiated via AddEntry(string, OpenDelegate, CloseDelegate).None = 0Default value. Invalid on a bonafide ZipEntry.
Stream = 2The entry was instantiated via AddEntry(string, string) or AddEntry(string, Stream) .
WriteDelegate = 4The content for the ZipEntry will be or was provided by the WriteDelegate.
ZipFile = 3The ZipEntry was instantiated by reading a zipfile.
ZipOutputStream = 6The content for the ZipEntry will be or was obtained from a
ZipOutputStream.