Difference between revisions of "URLConnection.ReceivingProgressed"
From Xojo Documentation
m |
(→Parameters) |
||
Line 13: | Line 13: | ||
|- | |- | ||
| bytesReceived | | bytesReceived | ||
− | | The number of bytes received | + | | The number of bytes received so far (out of the ''totalBytes''), but not including what is in ''newData''. |
|- | |- | ||
| totalBytes | | totalBytes |
Latest revision as of 21:10, 17 January 2019
Event
URLConnection.ReceivingProgressed(bytesReceived As Int64, totalBytes As Int64, newData As String)
Supported for all project types and targets.
Supported for all project types and targets.
Call periodically as data is received.
Parameters
Parameter | Description |
---|---|
bytesReceived | The number of bytes received so far (out of the totalBytes), but not including what is in newData. |
totalBytes | The total bytes available to receive. |
newData | The new data that was received. |