string GetDownloadString(ITicker ticker, string address) { try { return(ticker.DownloadString(address)); } catch (Exception e) { Console.WriteLine("WebClient exception = " + e.ToString()); return(string.Empty); } }