Exemple #1
0
        /// <summary>
        /// Returns a complete URL based on the document base URL and the specified
        /// partial URL.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_dom_capi.h">cef/include/capi/cef_dom_capi.h</see>.
        /// </remarks>
        public string GetCompleteUrl(string partialURL)
        {
            var call = new CfxDomDocumentGetCompleteUrlRenderProcessCall();

            call.@this      = proxyId;
            call.partialURL = partialURL;
            call.RequestExecution(this);
            return(call.__retval);
        }
Exemple #2
0
        /// <summary>
        /// Returns a complete URL based on the document base URL and the specified
        /// partial URL.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_dom_capi.h">cef/include/capi/cef_dom_capi.h</see>.
        /// </remarks>
        public string GetCompleteUrl(string partialURL)
        {
            var call = new CfxDomDocumentGetCompleteUrlRenderProcessCall();

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