Click or drag to resize

IProjectArchiveManager Interface

Manages an open project archive, including making and maintaining a safety copy of the project, and saving the project into a new or temporary file or folder.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface IProjectArchiveManager : IDisposable

The IProjectArchiveManager type exposes the following members.

Properties
 NameDescription
Public propertyFileOrFolderName Gets the name of the file or folder. Can be null if no file or folder is set (up to now).
Public propertyIsDisposed Gets a value indicating whether this instance is disposed.
Top
Methods
 NameDescription
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Public methodGetArchiveReadOnlyThreadSave Intended for deferred reading of (typically only a single) project item from an archive. Gets an archive, for read-only purposes only. The call to this function should be thread-safe. It is required to call ReleaseArchiveThreadSave(Object, IProjectArchive) to release the returned archive if it is no longer in use.
Public methodReleaseArchiveThreadSave Releases the archive that was claimed with GetArchiveReadOnlyThreadSave(Object).
Public methodSave Saves the specified save project and windows state to the same file or folder that was used to open the project.
Top
Events
 NameDescription
Public eventFileOrFolderNameChanged Occurs when the property FileOrFolderName has changed.
Top
See Also