cef_server_t.send_raw_data

Send raw data directly to the connection identified by |connection_id|. |data| is the raw data and |data_size| is the size of |data| in bytes. The contents of |data| will be copied. No validation of |data| is performed internally so the client should be careful to send the amount indicated by the "Content-Length" header, if specified. See SendHttpResponse documentation for intended usage.

struct cef_server_t
extern (System)
void function(cef_server_t* self, int connection_id, const(void)* data, size_t data_size) nothrow send_raw_data;

Meta