-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.cURLSession.Progess
Andrew Lambert edited this page Nov 26, 2022
·
3 revisions
libcURL.cURLSession.Progress
Event Function Progress(dlTotal As Int64, dlNow As Int64, ulTotal As Int64, ulNow As Int64) As Boolean| 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 True to abort the transfer.
This event may be raised at a varying but frequent interval.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.