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