URLConnection.ReceivingProgressed
From Xojo Documentation
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. |