mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
9e15b27e3a
Added DownloadString for HttpProvider that allows for authenticaion (required for XBMC with username/password).
8 lines
215 B
C#
8 lines
215 B
C#
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IHttpProvider
|
|
{
|
|
string DownloadString(string request);
|
|
string DownloadString(string request, string username, string password);
|
|
}
|
|
} |