コード例 #1
0
ファイル: CfrCommandLine.cs プロジェクト: 386845154a/NanUI-1
        /// <summary>
        /// Create a new CfrCommandLine instance.
        /// </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 Create()
        {
            var call = new CfxCommandLineCreateRemoteCall();

            call.RequestExecution();
            return(CfrCommandLine.Wrap(new RemotePtr(call.__retval)));
        }
コード例 #2
0
        /// <summary>
        /// Create a new CfrCommandLine instance.
        /// </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 Create()
        {
            var connection = CfxRemoteCallContext.CurrentContext.connection;
            var call       = new CfxCommandLineCreateRemoteCall();

            call.RequestExecution(connection);
            return(CfrCommandLine.Wrap(new RemotePtr(connection, call.__retval)));
        }