1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 02:40:01 +00:00
Radarr/NzbDrone.Core/Providers/IHttpProvider.cs
markus101 9e15b27e3a XbmcProvider will use HttpProvider.
Added DownloadString for HttpProvider that allows for authenticaion (required for XBMC with username/password).
2011-03-06 22:33:59 -08:00

8 lines
No EOL
215 B
C#

namespace NzbDrone.Core.Providers
{
public interface IHttpProvider
{
string DownloadString(string request);
string DownloadString(string request, string username, string password);
}
}