mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-12 09:15:35 +00:00
Added DownloadString for HttpProvider that allows for authenticaion (required for XBMC with username/password).
8 lines
No EOL
215 B
C#
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);
|
|
}
|
|
} |