libcURL.EasyHandle.Pause - charonn0/RB-libcURL GitHub Wiki
libcURL.EasyHandle.Pause
Method Signature
Function Pause(Mask As Integer = CURLPAUSE_ALL) As Boolean
Parameters
| Name | Type | Comment |
|---|---|---|
| Mask | Integer | Optional. A bitmask of one or more CURLPAUSE_* constants that controls whether uploads and/or downloads are paused. If this parameter is not specified then both are paused. |
Return value
If the operation succeeded this method returns True. If it returns False the operation failed and the curl error number is stored in EasyHandle.LastError.
Remarks
Pauses a transfer's upload and/or download operation.
See also
- EasyHandle.Resume
- curl_easy_pause in the libcURL documentation.