コード例 #1
0
        /// <inheritdoc />
        public async Task AddTextResourceAsync(string lang, string name, string value)
        {
            var response = await _service.AddTextResourceAsync(new TextResourceModel(lang, name, value));

            if (response != null)
            {
                throw new Exception(response.ErrorMessage);
            }
        }