native
ezhttp_delete
Syntax
native EzHttpRequest:ezhttp_delete(
const url[] = "",
const on_complete[] = "",
EzHttpOptions:options_id = EzHttpOptions:0,
const data[] = {},
const data_len = 0
);
Description
Performs a DELETE request.
Parameters
| url | URL to send the request to. |
|---|---|
| on_complete | Function to call when the request is complete. Signature: public on_complete(EzHttpRequest:request_id) |
| options_id | Options identifier created via ezhttp_create_options(). |
| data | Data to send with the request. |
| data_len | Length of the data. |
Return
Request identifier.