view Stocks/Stocks.Common/IWebClientShim.cs @ 11:db71b2e0a216

Extension added (fails on Windows XP)
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 17:30:16 +0700
parents c812bca7b1ac
children
line wrap: on
line source

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