Beispiel #1
0
        /// <summary>
        /// Add a switch with the specified value to the end of the command line.
        /// </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 AppendSwitchWithValue(string name, string value)
        {
            var call = new CfxCommandLineAppendSwitchWithValueRenderProcessCall();

            call.self  = CfrObject.Unwrap(this);
            call.name  = name;
            call.value = value;
            call.RequestExecution(this);
        }
Beispiel #2
0
        /// <summary>
        /// Add a switch with the specified value to the end of the command line.
        /// </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 AppendSwitchWithValue(string name, string value)
        {
            var call = new CfxCommandLineAppendSwitchWithValueRenderProcessCall();

            call.@this = proxyId;
            call.name  = name;
            call.value = value;
            call.RequestExecution(this);
        }