コード例 #1
0
        /// <summary>
        /// Remove all contents from the post data element.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_request_capi.h">cef/include/capi/cef_request_capi.h</see>.
        /// </remarks>
        public void SetToEmpty()
        {
            var call = new CfxPostDataElementSetToEmptyRenderProcessCall();

            call.@this = proxyId;
            call.RequestExecution(this);
        }
コード例 #2
0
ファイル: CfrPostDataElement.cs プロジェクト: xmcy0011/NanUI
        /// <summary>
        /// Remove all contents from the post data element.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_request_capi.h">cef/include/capi/cef_request_capi.h</see>.
        /// </remarks>
        public void SetToEmpty()
        {
            var call = new CfxPostDataElementSetToEmptyRenderProcessCall();

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