type ICefResourceReadCallback = interface(ICefBaseRefCounted)
Callback for asynchronous continuation of ICefResourceHandler.read.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_resource_handler_capi.h">CEF source file: /include/capi/cef_resource_handler_capi.h (cef_resource_read_callback_t))
| Public | procedure Cont(bytes_read: int64); |
| Public | procedure Cont(bytes_read: int64); |
|
Callback for asynchronous continuation of read(). If |bytes_read| == 0 the response will be considered complete. If |bytes_read| > 0 then read() will be called again until the request is complete (based on either the result or the expected content length). If |bytes_read| < 0 then the request will fail and the |bytes_read| value will be treated as the error code. Attributes
| |