Exemple #1
0
        /// <summary>
        /// Reads all keys for this dictionary into the specified vector.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_values_capi.h">cef/include/capi/cef_values_capi.h</see>.
        /// </remarks>
        public bool GetKeys(System.Collections.Generic.List <string> keys)
        {
            var call = new CfxDictionaryValueGetKeysRenderProcessCall();

            call.self = CfrObject.Unwrap(this);
            call.keys = keys;
            call.RequestExecution(this);
            return(call.__retval);
        }
        /// <summary>
        /// Reads all keys for this dictionary into the specified vector.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_values_capi.h">cef/include/capi/cef_values_capi.h</see>.
        /// </remarks>
        public bool GetKeys(System.Collections.Generic.List <string> keys)
        {
            var call = new CfxDictionaryValueGetKeysRenderProcessCall();

            call.@this = proxyId;
            call.keys  = keys;
            call.RequestExecution(this);
            StringFunctions.CopyCfxStringList(call.keys, keys);
            return(call.__retval);
        }