1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 01:38:24 +00:00
Radarr/NzbDrone.Core/Providers/IHttpProvider.cs

10 lines
369 B
C#
Raw Normal View History

namespace NzbDrone.Core.Providers
{
public interface IHttpProvider
{
2010-09-28 05:01:54 +00:00
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);
}
2010-09-28 05:58:49 +00:00
}