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