Interface ICompletable
Defines an object that represents a completable operation, typically used for unit of work patterns.
Namespace: Umbraco.Cms.Core
Assembly: Umbraco.Core.dll
Syntax
public interface ICompletable
Remarks
The operation should be marked as complete by calling Complete() before disposing. If the object is disposed without calling Complete(), the operation should be rolled back.
Methods
View SourceComplete()
Marks the operation as complete, indicating that any changes should be committed.
Declaration
void Complete()