Пример #1
0
        /// <summary>
        /// Reload the current page ignoring any cached data.
        /// </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 void ReloadIgnoreCache()
        {
            var call = new CfxBrowserReloadIgnoreCacheRenderProcessCall();

            call.@this = proxyId;
            call.RequestExecution(this);
        }
Пример #2
0
        /// <summary>
        /// Reload the current page ignoring any cached data.
        /// </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 void ReloadIgnoreCache()
        {
            var call = new CfxBrowserReloadIgnoreCacheRenderProcessCall();

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