view Stocks/Stocks.Common/IWebClientShim.cs @ 78:dd6bcd2535b6

Working version
author Steven Hollidge <stevenhollidge@hotmail.com>
date Mon, 23 Apr 2012 22:43:53 +0100
parents c812bca7b1ac
children
line wrap: on
line source

using System;
namespace Stocks.Common
{
  public interface IWebClientShim : IDisposable
  {
    string DownloadString(string address);
  }
}