Exemplo n.º 1
0
 public unsafe void SetHeaderMap(cef_string_multimap_t headerMap)
 {
     fixed(cef_response_t *self = &this)
     {
         ((delegate * unmanaged[Stdcall] < cef_response_t *, cef_string_multimap_t, void >)set_header_map)(self, headerMap);
     }
 }
Exemplo n.º 2
0
 public unsafe extern void SendHttpResponse(int connection_id, int response_code, [Immutable] cef_string_t *content_type, long content_length, cef_string_multimap_t extra_headers);
Exemplo n.º 3
0
 public unsafe void SendHttpResponse(int connection_id, int response_code, [Immutable] cef_string_t *content_type, long content_length, cef_string_multimap_t extra_headers)
 {
     fixed(cef_server_t *self = &this)
     {
         ((delegate * unmanaged[Stdcall] < cef_server_t *, int, int, cef_string_t *, long, cef_string_multimap_t, void >)send_http_response)(self, connection_id, response_code, content_type, content_length, extra_headers);
     }
 }
Exemplo n.º 4
0
 public unsafe extern void Set([Immutable] cef_string_t *url, [Immutable] cef_string_t *method, cef_post_data_t *postData, cef_string_multimap_t headerMap);
Exemplo n.º 5
0
 public unsafe extern void SetHeaderMap(cef_string_multimap_t headerMap);
Exemplo n.º 6
0
 public unsafe void Set([Immutable] cef_string_t *url, [Immutable] cef_string_t *method, cef_post_data_t *postData, cef_string_multimap_t headerMap)
 {
     fixed(cef_request_t *self = &this)
     {
         ((delegate * unmanaged[Stdcall] < cef_request_t *, cef_string_t *, cef_string_t *, cef_post_data_t *, cef_string_multimap_t, void >)set)(self, url, method, postData, headerMap);
     }
 }