Lidarr/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
}