Enum OperationResultType
A value indicating the result of an operation.
Namespace: Umbraco.Core.Services
Assembly: Umbraco.Core.dll
Syntax
public enum OperationResultType : byte
Fields
Name | Description |
---|---|
Failed | The operation failed. |
FailedCancelledByEvent | The operation has been cancelled by an event handler. |
FailedCannot | The operation could not complete because of invalid preconditions (eg creating a reference to an item that does not exist). |
FailedExceptionThrown | The operation could not complete due to an exception. |
NoOperation | No operation has been executed because it was not needed (eg deleting an item that doesn't exist). |
Success | The operation was successful. |