/// <summary> /// Removes all values. Returns true (1) on success. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_values_capi.h">cef/include/capi/cef_values_capi.h</see>. /// </remarks> public bool Clear() { var call = new CfxListValueClearRenderProcessCall(); call.@this = proxyId; call.RequestExecution(this); return(call.__retval); }
/// <summary> /// Removes all values. Returns true (1) on success. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_values_capi.h">cef/include/capi/cef_values_capi.h</see>. /// </remarks> public bool Clear() { var call = new CfxListValueClearRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.RequestExecution(this); return(call.__retval); }