Exemplo n.º 1
0
        /// <summary>
        /// Set a JWE value.
        /// </summary>
        /// <param name="value"> The [`compact representation`](https://tools.ietf.org/html/rfc7516#appendix-A.2.7) of a JWE value.</param>
        public void setWithCompactRepresentation(string value)
        {
            if (disabled)
            {
                return;
            }

            Dispatchers.LaunchAPI(() => {
                LibGleanFFI.glean_jwe_set_with_compact_representation(this.handle, value);
            });
        }