mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +00:00
4f2f5a3d71
SabProvider - Added AddById (Newzbin) Fixes to RssItemProcessingProvider Can either download NZB to file or send to SAB...
10 lines
No EOL
369 B
C#
10 lines
No EOL
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);
|
|
}
|
|
} |