1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

added cache pipelines

This commit is contained in:
kay.one
2013-08-19 22:53:18 -07:00
parent 4183fecaca
commit 290e072f2e
10 changed files with 122 additions and 37 deletions
+1 -2
View File
@@ -13,7 +13,6 @@ namespace NzbDrone.Common
{
string DownloadString(string url);
string DownloadString(string url, string username, string password);
string DownloadString(string url, ICredentials identity);
Dictionary<string, string> GetHeader(string url);
Stream DownloadStream(string url, NetworkCredential credential = null);
@@ -44,7 +43,7 @@ namespace NzbDrone.Common
return DownloadString(url, new NetworkCredential(username, password));
}
public string DownloadString(string url, ICredentials identity)
private string DownloadString(string url, ICredentials identity)
{
try
{