Click or drag to resize

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
Syntax
public delegate void DownloadProgressChangedEventHandler(
	long? totalBytesToReceive,
	long bytesReceived,
	double? progressPercentage
)

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