/// <summary> /// Returns the singleton global CfrCommandLine object. The returned object /// will be read-only. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_command_line_capi.h">cef/include/capi/cef_command_line_capi.h</see>. /// </remarks> public static CfrCommandLine GetGlobal() { var call = new CfxCommandLineGetGlobalRemoteCall(); call.RequestExecution(); return(CfrCommandLine.Wrap(new RemotePtr(call.__retval))); }
/// <summary> /// Returns the singleton global CfrCommandLine object. The returned object /// will be read-only. /// </summary> /// <remarks> /// See also the original CEF documentation in /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_command_line_capi.h">cef/include/capi/cef_command_line_capi.h</see>. /// </remarks> public static CfrCommandLine GetGlobal() { var connection = CfxRemoteCallContext.CurrentContext.connection; var call = new CfxCommandLineGetGlobalRemoteCall(); call.RequestExecution(connection); return(CfrCommandLine.Wrap(new RemotePtr(connection, call.__retval))); }