Beispiel #1
0
        /// <summary>
        /// Returns the frame with the specified name, or NULL if not found.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
        /// </remarks>
        public CfrFrame GetFrame(string name)
        {
            var call = new CfxBrowserGetFrameRenderProcessCall();

            call.@this = proxyId;
            call.name  = name;
            call.RequestExecution(this);
            return(CfrFrame.Wrap(call.__retval));
        }
Beispiel #2
0
        /// <summary>
        /// Returns the frame with the specified name, or NULL if not found.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
        /// </remarks>
        public CfrFrame GetFrame(string name)
        {
            var call = new CfxBrowserGetFrameRemoteCall();

            call.@this = RemotePtr.ptr;
            call.name  = name;
            call.RequestExecution(RemotePtr.connection);
            return(CfrFrame.Wrap(new RemotePtr(call.__retval)));
        }
Beispiel #3
0
        /// <summary>
        /// Returns the frame with the specified identifier, or NULL if not found.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
        /// </remarks>
        public CfrFrame GetFrame(long identifier)
        {
            var call = new CfxBrowserGetFrameByIdentifierRenderProcessCall();

            call.@this      = proxyId;
            call.identifier = identifier;
            call.RequestExecution(this);
            return(CfrFrame.Wrap(call.__retval));
        }
Beispiel #4
0
        /// <summary>
        /// Returns the frame with the specified identifier, or NULL if not found.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
        /// </remarks>
        public CfrFrame GetFrame(long identifier)
        {
            var call = new CfxBrowserGetFrameByIdentifierRemoteCall();

            call.@this      = RemotePtr.ptr;
            call.identifier = identifier;
            call.RequestExecution(RemotePtr.connection);
            return(CfrFrame.Wrap(new RemotePtr(call.__retval)));
        }