DeleteFailureReason Enumeration | 
 
            Specifies possible results of a delete operation corresponding to an individual item.
            
 
    Namespace: 
   Dundas.BI.FileSystem
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic enum DeleteFailureReason
Public Enumeration DeleteFailureReason
public enum class DeleteFailureReason
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | None | -1 | 
            The operation was successful.
             | 
 | UnknownFailure | 0 | 
            The operation failed for an unknown reason.
             | 
 | Aborted | 1 | 
            No attempt was made to delete the item due to other failures.
             | 
 | NotFound | 2 | 
            The item could not be deleted because it does not exist.
             | 
 | AccessDenied | 3 | 
            The item could not be deleted because the caller does not have the necessary privileges.
             | 
 | InvalidOperation | 4 | The item could not be deleted because it does not support the Delete operation. | 
 | FolderNotEmpty | 5 | 
            The folder could not be deleted because it is not empty, and AllowNonEmpty was not specified.
             | 
 | CheckedOutToAnotherUser | 6 | 
            The item could not be deleted because it is checked-out by someone else.
             | 
 | Referenced | 7 | 
            The item could not be deleted because it is referenced by one or more other
            entries, and AllowReferenced was not specified.
             | 
 | Protected | 8 | 
            The item could not be deleted because it is an integral part of the application and is protected from deletion.
             | 
See Also