0 votes

Hi
the progress will work good when from starting to finishing upload, there is no interrupts. but if you want to start it from remoteStartPosition, the progress amount will reset to zero.
Is there a fix for this problem?

Thanks

closed with the note: the answer is good enough
by
closed

1 Answer

0 votes
 
Best answer

This is expected behavior.

You can use ProgressEventArgs properties:

  • TotalBytesTransferred - total bytes already transferred.
  • TotalBytesToTransfer - total bytes to transfer.
  • Transferred - bytes transfered during last operation.

to customize user experience any way you'd like.

by (297k points)
...