Пример #1
0
        /// <summary>
        /// Generic PutAsync method which is accepting 'variable' as parameter and sending to the service. We used here object type instead of any particular type.
        /// You can get response in json and deserialized into the particular type
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="apiUri"></param>
        /// <param name="variable"></param>
        /// <returns></returns>
        public async Task <T> PutAsync <T>(string apiUri, object variable)
        {
            HttpResponseMessage response = await _client.PutAsJsonAsync(apiUri, variable);

            response.EnsureSuccessStatusCode();

            if (!response.IsSuccessStatusCode)
            {
                throw HttpClientExceptions.ThrowException(response);
            }

            T result = await response.Content.ReadAsAsync <T>();

            return(result);
        }
Пример #2
0
        /// <summary>
        /// Generic DeleteAsync which is deleting any record from the service
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="apiUri"></param>
        /// <returns></returns>
        public async Task <T> DeleteAsync <T>(string apiUri)
        {
            HttpResponseMessage response = await _client.DeleteAsync(apiUri);

            response.EnsureSuccessStatusCode();

            if (!response.IsSuccessStatusCode)
            {
                throw HttpClientExceptions.ThrowException(response);
            }

            T result = await response.Content.ReadAsAsync <T>();

            return(result);
        }
Пример #3
0
        /// <summary>
        /// Generic GetAsync method which is getting values in json and deserialized into the particular type
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="apiUri"></param>
        /// <returns></returns>
        public async Task <T> GetAsync <T>(string apiUri)
        {
            HttpResponseMessage response = await _client.GetAsync(apiUri);

            response.EnsureSuccessStatusCode();

            if (!response.IsSuccessStatusCode)
            {
                throw HttpClientExceptions.ThrowException(response);
            }

            string content = await response.Content.ReadAsStringAsync();

            var result = JsonConvert.DeserializeObject <T>(content);

            return(result);
        }
Пример #4
0
        /// <summary>
        /// Generic DeleteAsync which is deleting any record from the service by http request
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="apiUri"></param>
        /// <returns></returns>
        public async Task <T> DeleteAsyncByHttpRequest <T>(string apiUri)
        {
            var request = new HttpRequestMessage(HttpMethod.Delete, new Uri(apiUri));

            HttpResponseMessage response = await _client.SendAsync(request);

            response.EnsureSuccessStatusCode();

            if (!response.IsSuccessStatusCode)
            {
                throw HttpClientExceptions.ThrowException(response);
            }

            T result = await response.Content.ReadAsAsync <T>();

            return(result);
        }
Пример #5
0
        /// <summary>
        /// Generic PutAsync method which is accepting 'variable' as parameter and sending to the service by http request. We used here object type instead of any particular type.
        /// You can get response in json and deserialized into the particular type
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="apiUri"></param>
        /// <param name="variable"></param>
        /// <returns></returns>
        public async Task <T> PutAsyncByHttpRequest <T>(string apiUri, object variable)
        {
            var request = new HttpRequestMessage(HttpMethod.Put, new Uri(apiUri))
            {
                Content = new StringContent(JsonConvert.SerializeObject(variable), Encoding.UTF8, "application/json")
            };

            HttpResponseMessage response = await _client.SendAsync(request);

            response.EnsureSuccessStatusCode();

            if (!response.IsSuccessStatusCode)
            {
                throw HttpClientExceptions.ThrowException(response);
            }

            T result = await response.Content.ReadAsAsync <T>();

            return(result);
        }