FileDownloadManagerDownloadProgressChangedEventHandler Delegate |
https://www.emgu.com
The call back when download progress has been changed.
Namespace:
Emgu.Models
Assembly:
Emgu.TF.Lite.Models (in Emgu.TF.Lite.Models.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic delegate void DownloadProgressChangedEventHandler(
long? totalBytesToReceive,
long bytesReceived,
double? progressPercentage
)
Public Delegate Sub DownloadProgressChangedEventHandler (
totalBytesToReceive As Long?,
bytesReceived As Long,
progressPercentage As Double?
)
public delegate void DownloadProgressChangedEventHandler(
Nullable<long long> totalBytesToReceive,
long long bytesReceived,
Nullable<double> progressPercentage
)
type DownloadProgressChangedEventHandler =
delegate of
totalBytesToReceive : Nullable<int64> *
bytesReceived : int64 *
progressPercentage : Nullable<float> -> unit
Parameters
- totalBytesToReceive
- Type: SystemNullableInt64
The total number of bytes to receive. If null, it is unknown. - bytesReceived
- Type: SystemInt64
The total number of bytes currently received. - progressPercentage
- Type: SystemNullableDouble
The progress percentage. If null, it is unknown.
See Also