Delegate OpenDelegate
Delegate in which the application opens the stream, just-in-time, for the named entry.
public delegate Stream OpenDelegate(string entryName)
Parameters
entryNamestringThe 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.