public static async Task <List <gg_news_mini> > GetMiniNews() { string fullpath = Settings.Path + "news/getall"; try { using (var client = new HttpClient()) { HttpRequestMessage request = new HttpRequestMessage() { RequestUri = new Uri(fullpath), Method = HttpMethod.Get }; request.Headers.Add("Accept", "application/x-protobuf"); HttpResponseMessage response = await client.SendAsync(request); if (response.StatusCode == HttpStatusCode.OK) { return(Protobuf.ProtoDeserialize <List <gg_news_mini> >(response.Content.ReadAsByteArrayAsync().Result)); //var mininews = JsonConvert.DeserializeObject<List<gg_news_mini>>(await response.Content.ReadAsStringAsync()); //return JsonConvert.DeserializeObject<List<gg_news_mini>>(await response.Content.ReadAsStringAsync(), new JsonSerializerSettings //{ // // Formatting = Formatting.Indented, // NullValueHandling = NullValueHandling.Ignore //}); } else { return(null); } } } catch (Exception ex) { throw; } }