/// <summary> /// Insert a command before the current command. Common for debuggers, like /// "valgrind" or "gdb --args". /// </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 void PrependWrapper(string wrapper) { var call = new CfxCommandLinePrependWrapperRenderProcessCall(); call.self = CfrObject.Unwrap(this); call.wrapper = wrapper; call.RequestExecution(this); }
/// <summary> /// Insert a command before the current command. Common for debuggers, like /// "valgrind" or "gdb --args". /// </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 void PrependWrapper(string wrapper) { var call = new CfxCommandLinePrependWrapperRenderProcessCall(); call.@this = proxyId; call.wrapper = wrapper; call.RequestExecution(this); }