Click or drag to resize

ZipFileProjectArchiveManagerBaseProjectArchiveCreationFunction Delegate

Function delegate to create a new project archive.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

IProjectArchive
The newly created project archive.
See Also