1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-02 13:04:37 +00:00
Lidarr/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);
}
}