XbmcProvider will use HttpProvider.

Added DownloadString for HttpProvider that allows for authenticaion (required for XBMC with username/password).
This commit is contained in:
markus101 2011-03-06 22:33:59 -08:00
commit 9e15b27e3a
4 changed files with 42 additions and 19 deletions

View file

@ -3,5 +3,6 @@
public interface IHttpProvider
{
string DownloadString(string request);
string DownloadString(string request, string username, string password);
}
}