Interface ICleanup
Defines a common interface for classes that should be cleaned up, but without the implications that IDisposable presupposes. An instance implementing ICleanup can be cleaned up without being disposed and garbage collected.
Namespace: ISynergy.Framework.Mvvm.Abstractions
Assembly: ISynergy.Framework.Mvvm.dll
Syntax
public interface ICleanup
Methods
View SourceCleanup()
Cleans up the instance, for example by saving its state, removing resources, etc...
Declaration
void Cleanup()