Example #1
0
        /// <summary>
        /// This allows you to set a configuration key
        /// </summary>
        /// <param name="keyPath"></param>
        /// <param name="value"></param>
        /// <returns></returns>
        public async Task <bool> SetKeyAsync(string keyPath, string value)
        {
            keyPath = StripFrontAndBackSlashes(keyPath);
            var response = await _source.TrySetKeyAsync(keyPath, value).ConfigureAwait(false);

            return(response);
        }