UploadOperation.Progress Property

Definition

Gets the current progress of the upload operation.

BackgroundUploadProgress Progress();
public BackgroundUploadProgress Progress { get; }
var backgroundUploadProgress = uploadOperation.progress;
Public ReadOnly Property Progress As BackgroundUploadProgress

Property Value

The delegate to invoke when progress is available for a transfer operation.

Remarks

The value of the Progress property is updated in real time, which means that the value can change while a progress handler is executing. As a best practice, create a local copy of the Progress property at the beginning of your progress handler, and use only that copy in your progress handler, to maintain a consistent view of progress as your handler executes.

Applies to