Sonarr/NzbDrone.Core/Providers/HttpProvider.cs

14 lines
258 B
C#
Raw Normal View History

2010-09-28 03:40:01 +00:00
using System;
using System.Net;
namespace NzbDrone.Core.Providers
2010-09-28 03:40:01 +00:00
{
class HttpProvider : IHttpProvider
2010-09-28 03:40:01 +00:00
{
2010-09-28 05:01:54 +00:00
public string DownloadString(string request)
2010-09-28 03:40:01 +00:00
{
2010-09-28 05:01:54 +00:00
return new WebClient().DownloadString(request);
2010-09-28 03:40:01 +00:00
}
}
}