Ejemplo n.º 1
0
        public TeamHistory GetHistory(long teamId)
        {
            string url         = string.Format(m_HistoryUrl, teamId);
            string historyJson = DownloadString(url);

            return(TeamHistory.FromJson(historyJson));
        }
Ejemplo n.º 2
0
 public static string ToJson(this TeamHistory self) => JsonConvert.SerializeObject(self, HistoryConverter.Settings);