mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00

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);
|
|
}
|
|
} |