/// <summary> /// Add the specified post data element. Returns true if the add succeeds. /// </summary> public bool Add(CefPostDataElement element) { return(cef_post_data_t.add_element(_self, element.ToNative()) != 0); }
/// <summary> /// Add the specified post data element. Returns true if the add succeeds. /// </summary> public bool Add(CefPostDataElement element) { return cef_post_data_t.add_element(_self, element.ToNative()) != 0; }
/// <summary> /// Remove the specified post data element. Returns true if the removal /// succeeds. /// </summary> public bool Remove(CefPostDataElement element) { return(cef_post_data_t.remove_element(_self, element.ToNative()) != 0); }
/// <summary> /// Remove the specified post data element. Returns true if the removal /// succeeds. /// </summary> public bool Remove(CefPostDataElement element) { return cef_post_data_t.remove_element(_self, element.ToNative()) != 0; }