1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/NzbDrone.Core/Providers/Core/IHttpProvider.cs

10 lines
374 B
C#
Raw Normal View History

2011-04-04 03:50:12 +00:00
namespace NzbDrone.Core.Providers.Core
{
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
}