mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-10 23:29:53 +02: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);
|
|
}
|
|
} |