1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-06 11:50:56 +02:00
Sonarr/NzbDrone.Core/Providers/IHttpProvider.cs

10 lines
369 B
C#
Raw Normal View History

namespace NzbDrone.Core.Providers
{
public interface IHttpProvider
{
2010-09-27 22:01:54 -07: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-27 22:58:49 -07:00
}