/// <summary> /// Makes GET request to the specified URL. /// </summary> /// <param name="url"></param> /// <returns>HttpResponseMessage</returns> public async Task <EasyHttpResponse> GetAsync(string url) { var result = await EasyClient.GetAsync(url, HttpCompletionOption.ResponseContentRead); return(new EasyHttpResponse(result)); }