Members
Icon | Member | Description |
---|---|---|
AddEntry(String, String) |
Adds a named entry into the zip archive, taking content for the entry
from a string.
|
|
AddEntry(String, String, Encoding) |
Adds a named entry into the zip archive, taking content for the entry
from a string, and using the specified text encoding.
|
|
AddEntry(String, Stream) |
Create an entry in the ZipFile using the given Stream
as input. The entry will have the given filename.
|
|
AddEntry(String, WriteDelegate) |
Add a ZipEntry for which content is written directly by the application.
|
|
AddEntry(String, OpenDelegate, CloseDelegate) |
Add an entry, for which the application will provide a stream,
just-in-time.
|
|
AddEntry(String, array<Byte>[]()[][]) |
Add an entry into the zip archive using the given filename and
directory path within the archive, and the given content for the
file. No file is created in the filesystem.
|