Click or drag to resize

TransferErrorCode Enumeration

Error codes for TransferException.

Namespace:  Microsoft.Azure.Storage.DataMovement
Assembly:  Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
public enum TransferErrorCode
Members
  Member nameValueDescription
None0 No error.
OpenFileFailed3 Failed to open file for upload or download.
UploadSourceFileSizeTooLarge4 The file to transfer is too large for the destination.
UploadBlobSourceFileSizeInvalid5 The file size is invalid for the specified blob type.
OperationCanceled6 User canceled.
LocalToLocalTransfersUnsupported7 Both Source and Destination are locally accessible locations. At least one of source and destination should be an Azure Storage location.
AsyncCopyFailed8 Failed to do asynchronous copy.
SameSourceAndDestination9 Source and destination are the same.
MismatchCopyId10 AsyncCopyController detects mismatch between copy id stored in transfer entry and that retrieved from server.
FailToRetrieveCopyStateForObject11 AsyncCopyControler fails to retrieve CopyState for the object which we are to monitor.
FailToAllocateMemory12 Fails to allocate memory in MemoryManager.
FailToGetSourceLastWriteTime13 Fails to get source's last write time.
NotOverwriteExistingDestination14 User choose not to overwrite existing destination.
TransferAlreadyExists15 Transfer with the same source and destination already exists.
FailToEnumerateDirectory16 Fails to enumerate directory.
FailToVadlidateDestination17 Fails to validate destination.
SubTransferFails18 Sub transfer fails.
UploadFileSourceFileSizeInvalid19 The source file size is invalid for azure file.
FailedToCreateDirectory20 Failed to create directory because a file already exists with the same name.
UnsupportedDummyTransfer21 The transfer type didn't support dummy transfer.
FailedCheckingShouldTransfer22 Failed when trying in ShouldTransferCallbackAsync.
Unknown32 Uncategorized transfer error.
See Also