Esempio n. 1
0
        /// <summary>
        /// Add an argument 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 AppendArgument(string argument)
        {
            var call = new CfxCommandLineAppendArgumentRenderProcessCall();

            call.self     = CfrObject.Unwrap(this);
            call.argument = argument;
            call.RequestExecution(this);
        }
Esempio n. 2
0
        /// <summary>
        /// Add an argument 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 AppendArgument(string argument)
        {
            var call = new CfxCommandLineAppendArgumentRenderProcessCall();

            call.@this    = proxyId;
            call.argument = argument;
            call.RequestExecution(this);
        }