/// <summary> /// Creates a new object that is not owned by any other object. /// </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 static CfrDictionaryValue Create() { var call = new CfxDictionaryValueCreateRemoteCall(); call.RequestExecution(); return(CfrDictionaryValue.Wrap(new RemotePtr(call.__retval))); }
/// <summary> /// Creates a new object that is not owned by any other object. /// </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 static CfrDictionaryValue Create() { var connection = CfxRemoteCallContext.CurrentContext.connection; var call = new CfxDictionaryValueCreateRemoteCall(); call.RequestExecution(connection); return(CfrDictionaryValue.Wrap(new RemotePtr(connection, call.__retval))); }