Пример #1
0
        /// <summary>
        /// Create a new CfrProcessMessage object with the specified name.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_process_message_capi.h">cef/include/capi/cef_process_message_capi.h</see>.
        /// </remarks>
        public static CfrProcessMessage Create(string name)
        {
            var call = new CfxProcessMessageCreateRemoteCall();

            call.name = name;
            call.RequestExecution();
            return(CfrProcessMessage.Wrap(new RemotePtr(call.__retval)));
        }
Пример #2
0
        /// <summary>
        /// Returns a writable copy of this object.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_process_message_capi.h">cef/include/capi/cef_process_message_capi.h</see>.
        /// </remarks>
        public CfrProcessMessage Copy()
        {
            var call = new CfxProcessMessageCopyRemoteCall();

            call.@this = RemotePtr.ptr;
            call.RequestExecution(RemotePtr.connection);
            return(CfrProcessMessage.Wrap(new RemotePtr(call.__retval)));
        }
        /// <summary>
        /// Returns a writable copy of this object.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_process_message_capi.h">cef/include/capi/cef_process_message_capi.h</see>.
        /// </remarks>
        public CfrProcessMessage Copy()
        {
            var call = new CfxProcessMessageCopyRenderProcessCall();

            call.@this = proxyId;
            call.RequestExecution(this);
            return(CfrProcessMessage.Wrap(call.__retval));
        }
        /// <summary>
        /// Create a new CfrProcessMessage object with the specified name.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_process_message_capi.h">cef/include/capi/cef_process_message_capi.h</see>.
        /// </remarks>
        public static CfrProcessMessage Create(string name)
        {
            var call = new CfxProcessMessageCreateRenderProcessCall();

            call.name = name;
            call.RequestExecution(CfxRemoteCallContext.CurrentContext.connection);
            return(CfrProcessMessage.Wrap(call.__retval));
        }
Пример #5
0
        /// <summary>
        /// Returns a writable copy of this object.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_process_message_capi.h">cef/include/capi/cef_process_message_capi.h</see>.
        /// </remarks>
        public CfrProcessMessage Copy()
        {
            var call = new CfxProcessMessageCopyRenderProcessCall();

            call.self = CfrObject.Unwrap(this);
            call.RequestExecution(this);
            return(CfrProcessMessage.Wrap(call.__retval));
        }