CheckOutFailureReason Enumeration | 
 
            Specifies possible results of a check-out 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 CheckOutFailureReason
Public Enumeration CheckOutFailureReason
public enum class CheckOutFailureReason
type CheckOutFailureReason
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 check out the item due to other failures.
             | 
 | NotFound | 2 | 
            The item could not be checked out because it does not exist.
             | 
 | AccessDenied | 3 | 
            The item could not be checked out because the caller does not have the necessary privileges.
             | 
 | MissingParent | 4 | 
            The item could not be checked out because it is a subentry and the associated primary entry
            is not being checked out at the same time.
             | 
 | CheckedOutToAnotherUser | 5 | 
            The item could not be checked out because it is already checked out to another user.
             | 
 | NotSupported | 6 | 
            The item's type does not support the check out operation.
             | 
 | Recycled | 7 | 
            The item could not be checked out because it is recycled.
             | 
See Also