mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
10 lines
No EOL
374 B
C#
10 lines
No EOL
374 B
C#
namespace NzbDrone.Core.Providers.Core
|
|
{
|
|
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);
|
|
}
|
|
} |