/// <summary> /// Removes the value at the specified key. Returns true (1) is the value was /// removed successfully. /// </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 Remove(string key) { var call = new CfxDictionaryValueRemoveRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.key = key; call.RequestExecution(this); return(call.__retval); }
/// <summary> /// Removes the value at the specified key. Returns true (1) is the value was /// removed successfully. /// </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 Remove(string key) { var call = new CfxDictionaryValueRemoveRenderProcessCall(); call.@this = proxyId; call.key = key; call.RequestExecution(this); return(call.__retval); }