예제 #1
0
        public async Task <bool> RestDeleteById(int id)
        {
            try
            {
                await AddAuthHeaderAsync();

                var url     = $"{ApiPart}{id}";
                var apiData = await HttpClientBase.DeleteAsync(url).ConfigureAwait(false);

                if (apiData.IsSuccessStatusCode)
                {
                    return(true);
                }
                else
                {
                    throw new Exception(GetErrorText(apiData));
                }
            }
            catch (Exception ex)
            {
                HandleException(ex);
                throw;
            }
        }