cef_post_data_t

Structure used to represent post data for a web request. The functions of this structure may be called on any thread.

Members

Variables

add_element
int function(cef_post_data_t* self, cef_post_data_element_t* element) nothrow add_element;

Add the specified post data element. Returns true (1) if the add succeeds.

base
cef_base_ref_counted_t base;

Base structure.

get_element_count
size_t function(cef_post_data_t* self) nothrow get_element_count;

Returns the number of existing post data elements.

get_elements
void function(cef_post_data_t* self, size_t* elementsCount, cef_post_data_element_t** elements) nothrow get_elements;

Retrieve the post data elements.

has_excluded_elements
int function(cef_post_data_t* self) nothrow has_excluded_elements;

Returns true (1) if the underlying POST data includes elements that are not represented by this cef_post_data_t object (for example, multi-part file upload data). Modifying cef_post_data_t objects with excluded elements may result in the request failing.

is_read_only
int function(cef_post_data_t* self) nothrow is_read_only;

Returns true (1) if this object is read-only.

remove_element
int function(cef_post_data_t* self, cef_post_data_element_t* element) nothrow remove_element;

Remove the specified post data element. Returns true (1) if the removal succeeds.

remove_elements
void function(cef_post_data_t* self) nothrow remove_elements;

Remove all existing post data elements.

Meta