예제 #1
0
        /// <summary>
        /// Load the specified |url|.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_frame_capi.h">cef/include/capi/cef_frame_capi.h</see>.
        /// </remarks>
        public void LoadUrl(string url)
        {
            var call = new CfxFrameLoadUrlRenderProcessCall();

            call.self = CfrObject.Unwrap(this);
            call.url  = url;
            call.RequestExecution(this);
        }
        /// <summary>
        /// Load the specified |url|.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_frame_capi.h">cef/include/capi/cef_frame_capi.h</see>.
        /// </remarks>
        public void LoadUrl(string url)
        {
            var call = new CfxFrameLoadUrlRenderProcessCall();

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