1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-30 23:42:33 +01:00
Sonarr/NzbDrone.Core/Providers/HttpProvider.cs

12 lines
252 B
C#
Raw Normal View History

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