次の方法で共有


DataTransferState Enum

Definition

Defines the types of the state a transfer can have.

public enum DataTransferState
type DataTransferState = 
Public Enum DataTransferState
Inheritance
DataTransferState

Fields

Completed 6

The transfer has come to a completed state. If the transfer has started and has fully stopped will also come to this state.

InProgress 2

The transfer has started, but has not yet completed.

None 0

Default value.

Paused 5

The transfer has been paused. When transfer is paused (e.g. see PauseTransferIfRunningAsync(String, CancellationToken)) during the transfer, this will be the value.

Pausing 3

The transfer is in progress and is in the process of being paused.

Transfer can be stopped if PauseTransferIfRunningAsync(String, CancellationToken) or PauseAsync(CancellationToken) is called.

Queued 1

The transfer has been queued up but has not yet started.

Stopping 4

The transfer is in progress and is in the process of being stopped.

Transfer can be stopped if StopOnAnyFailure is enabled in the ErrorHandling.

Applies to