/// <summary>
        /// Returns the element attribute named |attrName|.
        /// </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 GetElementAttribute(string attrName)
        {
            var call = new CfxDomNodeGetElementAttributeRenderProcessCall();

            call.@this    = proxyId;
            call.attrName = attrName;
            call.RequestExecution(this);
            return(call.__retval);
        }
Esempio n. 2
0
        /// <summary>
        /// Returns the element attribute named |attrName|.
        /// </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 GetElementAttribute(string attrName)
        {
            var call = new CfxDomNodeGetElementAttributeRenderProcessCall();

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