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