private async Task <Ipos> GetIposFromResponseAsync(HttpResponseMessage response)
 {
     return(Ipos.FromJson(await response.Content.ReadAsStringAsync()));
 }
Esempio n. 2
0
 public static string ToJson(this Ipos self) => JsonConvert.SerializeObject(self, EODHistoricalData.NET.ConverterIpos.Settings);
 private Ipos GetIposFromResponse(HttpResponseMessage response)
 {
     return(Ipos.FromJson(response.Content.ReadAsStringAsync().Result));
 }