expand on dlna profiles

This commit is contained in:
Luke Pulverenti
2014-03-13 15:08:02 -04:00
parent bd53ddc67c
commit 0db3588529
24 changed files with 517 additions and 663 deletions

View File

@@ -22,9 +22,9 @@ namespace MediaBrowser.Dlna.PlayTo
_httpClient = httpClient;
}
public async Task<XDocument> SendCommandAsync(string baseUrl, uService service, string command, string postData, string header = null)
public async Task<XDocument> SendCommandAsync(string baseUrl, DeviceService service, string command, string postData, string header = null)
{
var serviceUrl = service.ControlURL;
var serviceUrl = service.ControlUrl;
if (!serviceUrl.StartsWith("/"))
serviceUrl = "/" + serviceUrl;