libcURL.cURLSession.Progess - charonn0/RB-libcURL GitHub Wiki
libcURL.cURLSession.Progress
Event Signature
Event Function Progress(dlTotal As Int64, dlNow As Int64, ulTotal As Int64, ulNow As Int64) As Boolean
Parameters
| Name | Type | Comment |
|---|---|---|
| dlTotal | Int64 |
The total number of bytes libcURL expects to download in this transfer. |
| dlNow | Int64 |
The number of bytes downloaded so far. |
| ulTotal | Int64 |
The total number of bytes libcURL expects to upload in this transfer. |
| ulNow | Int64 |
The number of bytes uploaded so far. |
Return value
Return True to abort the transfer.
Remarks
This event may be raised at a varying but frequent interval.