aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/IEventManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Dlna/IEventManager.cs')
-rw-r--r--MediaBrowser.Controller/Dlna/IEventManager.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Controller/Dlna/IEventManager.cs b/MediaBrowser.Controller/Dlna/IEventManager.cs
deleted file mode 100644
index 3af357a17..000000000
--- a/MediaBrowser.Controller/Dlna/IEventManager.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-
-namespace MediaBrowser.Controller.Dlna
-{
- public interface IEventManager
- {
- /// <summary>
- /// Cancels the event subscription.
- /// </summary>
- /// <param name="subscriptionId">The subscription identifier.</param>
- EventSubscriptionResponse CancelEventSubscription(string subscriptionId);
-
- /// <summary>
- /// Renews the event subscription.
- /// </summary>
- EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl);
-
- /// <summary>
- /// Creates the event subscription.
- /// </summary>
- EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
- }
-}