ZipFileProjectArchiveManagerBaseProjectArchiveCreationFunction Delegate |
Function delegate to create a new project archive.
Namespace: Altaxo.Main.ServicesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public delegate IProjectArchive ProjectArchiveCreationFunction(
Stream stream,
ZipArchiveMode zipArchiveMode,
bool leaveOpen,
IFileBasedProjectArchiveManager archiveManager
)
Parameters
- stream Stream
- The file stream this archive is based on.
- zipArchiveMode ZipArchiveMode
- The zip archive mode.
- leaveOpen Boolean
- If set to true, the stream is left open after the project archived is closed (disposed).
- archiveManager IFileBasedProjectArchiveManager
- The archive manager that manages this archive.
Return Value
IProjectArchiveThe newly created project archive.
See Also