Table of Contents

Delegate OpenDelegate

Namespace
Ionic.Zip
Assembly
SunamoDotNetZip.dll

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

public delegate Stream OpenDelegate(string entryName)

Parameters

entryName string

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

Returns

Stream
Delegate in which the application opens the stream, just-in-time, for the named entry.
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