diff options
Diffstat (limited to 'MediaBrowser.Controller/Dlna/IContentDirectory.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/IContentDirectory.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/IContentDirectory.cs b/MediaBrowser.Controller/Dlna/IContentDirectory.cs new file mode 100644 index 000000000..e48d498df --- /dev/null +++ b/MediaBrowser.Controller/Dlna/IContentDirectory.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Dlna +{ + public interface IContentDirectory + { + /// <summary> + /// Gets the content directory XML. + /// </summary> + /// <param name="headers">The headers.</param> + /// <returns>System.String.</returns> + string GetContentDirectoryXml(IDictionary<string, string> headers); + + /// <summary> + /// Processes the control request. + /// </summary> + /// <param name="request">The request.</param> + /// <returns>ControlResponse.</returns> + ControlResponse ProcessControlRequest(ControlRequest request); + } +} |
