/// <summary> /// Returns the value at the specified key as type int. /// </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 int GetInt(string key) { var call = new CfxDictionaryValueGetIntRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.key = key; call.RequestExecution(this); return(call.__retval); }
/// <summary> /// Returns the value at the specified key as type int. /// </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 int GetInt(string key) { var call = new CfxDictionaryValueGetIntRenderProcessCall(); call.@this = proxyId; call.key = key; call.RequestExecution(this); return(call.__retval); }