mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
4f2f5a3d71
SabProvider - Added AddById (Newzbin) Fixes to RssItemProcessingProvider Can either download NZB to file or send to SAB...
10 lines
369 B
C#
10 lines
369 B
C#
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IHttpProvider
|
|
{
|
|
string DownloadString(string request);
|
|
string DownloadString(string request, string username, string password);
|
|
bool DownloadFile(string request, string filename);
|
|
bool DownloadFile(string request, string filename, string username, string password);
|
|
}
|
|
} |