OperationStatus Enumeration |
IT Hit User File System
File system item operation result status.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 8.3.27213.0
Syntax [FlagsAttribute]
public enum OperationStatus
<FlagsAttribute>
Public Enumeration OperationStatus
[FlagsAttribute]
public enum class OperationStatus
[<FlagsAttribute>]
type OperationStatus
Members
| Member name | Value | Description |
---|
| Success | 0 |
Operation succeeded.
|
| Failed | 1 |
Operation failed.
|
| Exception | 3 |
Exception occured. The Exception field contains exception.
|
| Filtered | 5 |
Operation was prevented by a filter.
The FilteredBy field contains IFileSystemFilter that prevented this operation.
|
| NotFound | 9 |
Operation failed because the item does not exists or the item is offline.
|
| ParentNotFound | 17 |
Parent folder does not exists or is offline or not synced.
|
| TargetNotFound | 33 |
Operation failed because the target parent folder does not exists or is offline.
This status is set in case of a move operation.
|
| Blocked | 65 |
The item is blocked by other application, thread or by the platform.
|
| Conflict | 129 |
Conflict between remote storage and user file system.
|
| Cancelled | 257 |
Operation was cancelled.
|
| NotNew | 513 |
Failed to create an item in the remote storage because the item already synched to the remote storage (the item is not new).
|
| InSync | 1025 |
The operation failed becuse the item is in-sync.
|
| Moved | 2049 |
The operation failed becuse the item is moved.
|
| New | 4097 |
Failed to update item because the item is new. Item must be created in the remote storage first.
|
| USNsDoNotMatch | 8193 |
Failed because the file was modified during upload to remote storage. Starting and ending USNs do not match.
|
| CanNotChangeRoot | 16385 |
The operation failed because root can not be deleted or moved.
|
| NotInSyncResult | 32769 |
The method call instructed to set the item in not in-sync state. For example if update failed because the item chenged in the remote storage.
|
| FileInUse | 65537 |
The operation failed because the file is in use by other application.
|
| NotModified | 131073 |
The item was not updated because neither content nor medadata are modified.
This result is returned if ContentETag and MetadataETag
match content and metadata eTags stored with the placeholder on the client.
|
| NotImplemented | 262145 |
The required interface or method is not implemented.
|
| Unauthenticated | 524289 |
The operation failed because the request is unauthenticated.
|
See Also