Gets the value that represents the estimated time, in seconds, when an upload process will be finished.

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

Syntax

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

Field Value

Type: System..::.Int32
A Int32 value that contains estimated time, in seconds, of an upload finish. Default value is -1 (an upload process does not started or had been completed).

Remarks

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

Examples

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

See Also