UndoCheckOutFailureReason Enumeration |
Specifies possible results of an undo 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 (24.3.0.1000)
Syntax public enum UndoCheckOutFailureReason
Public Enumeration UndoCheckOutFailureReason
public enum class UndoCheckOutFailureReason
type UndoCheckOutFailureReason
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 undo the check-out on the item due to other failures.
|
| NotFound | 2 |
The item does not exist.
|
| MissingParent | 4 |
The check-out on the item could not be undone because it is a subentry and the check-out on
the associated primary entry is not being undone at the same time.
|
| NotCheckedOut | 5 |
The check-out on the item could not be undone because the item is not checked out
to the caller, or the item is checked out to another user but the caller lacks administrative
privileges.
|
| Recycled | 6 |
The item is recycled.
|
See Also