Delegate CloseDelegate
Delegate in which the application closes the stream, just-in-time, for the named entry.
public delegate void CloseDelegate(string entryName, Stream stream)
Parameters
entryNamestringThe name of the ZipEntry that the application should close the stream for.
streamStreamThe stream to be closed.
- Extension Methods
Remarks
When you add an entry via AddEntry(string, OpenDelegate, CloseDelegate), the application code provides the logic that opens and closes the stream for the given ZipEntry.