+1 vote

How to i know speed download in Ftp.dll?
in documentation i didn't found how to get speed download

by

1 Answer

0 votes
 
Best answer

You can use progress event (Ftp.Progress) to compute speed.
Use ProgressEventArgs.Transferred property it gets the number of bytes transferred during the last network operation operation.

Mark time between start and first event (or between 2 subsequent events) and use Transferred property value.

by (297k points)
...