An enum that specifies the source of the ZipEntry.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public enum ZipEntrySource
Public Enumeration ZipEntrySource
public enum class ZipEntrySource
Members
Member | Description |
---|---|
None |
Default value. Invalid on a bonafide ZipEntry.
|
FileSystem |
The entry was instantiated by calling AddFile() or another method that
added an entry from the filesystem.
|
Stream |
The entry was instantiated via AddEntry(String, String) or
AddEntry(String, Stream) .
|
ZipFile |
The ZipEntry was instantiated by reading a zipfile.
|
WriteDelegate |
The content for the ZipEntry will be or was provided by the WriteDelegate.
|
JitStream |
The content for the ZipEntry will be obtained from the stream dispensed by the OpenDelegate.
The entry was instantiated via AddEntry(String, OpenDelegate, CloseDelegate).
|
ZipOutputStream |
The content for the ZipEntry will be or was obtained from a ZipOutputStream.
|