Table of Contents

Delegate CloseDelegate

Namespace
Ionic.Zip
Assembly
SunamoDotNetZip.dll

Delegate in which the application closes the stream, just-in-time, for the named entry.

public delegate void CloseDelegate(string entryName, Stream stream)

Parameters

entryName string

The name of the ZipEntry that the application should close the stream for.

stream Stream

The 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.

See Also