Enum OperationResultType
A value indicating the result of an operation.
Namespace: Umbraco.Cms.Core.Services
Assembly: Umbraco.Core.dll
Syntax
public enum OperationResultType : byteFields
| 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). | 
| FailedDuplicateKey | The operation could not complete due to duplicate key detection | 
| 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. |