diff options
Diffstat (limited to 'MediaBrowser.Controller/Dlna/ControlRequest.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/ControlRequest.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Dlna/ControlRequest.cs b/MediaBrowser.Controller/Dlna/ControlRequest.cs index 7020cc0d9..ff951ec9e 100644 --- a/MediaBrowser.Controller/Dlna/ControlRequest.cs +++ b/MediaBrowser.Controller/Dlna/ControlRequest.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.IO; namespace MediaBrowser.Controller.Dlna { @@ -6,7 +7,7 @@ namespace MediaBrowser.Controller.Dlna { public IDictionary<string, string> Headers { get; set; } - public string InputXml { get; set; } + public Stream InputXml { get; set; } public string TargetServerUuId { get; set; } |
