Gets the average data transfer rate of an upload, in bytes per second.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0

Syntax

C#
public int BytesPerSecondAvg { get; }
Visual Basic (Declaration)
Public ReadOnly Property BytesPerSecondAvg As Integer

Field Value

Type: System..::.Int32
An integer value that represents the approximate transfer rate of an upload, in bytes per second. Default value is 0

Remarks

The property value is calculated by following algorithm:
            			UploadedBytes
            BytesPerSecondAvg = ---------------------
            			 ElapsedTime
            

Examples

You can find an example in the description of UploadStatus class.

See Also