aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-07-20 16:37:13 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-07-20 16:37:13 -0400
commitd826b9844952d677e9a8aba730fe85013a78c6f6 (patch)
tree9802a231b0d88da4d07720a54d43e0a8fc20e975 /MediaBrowser.Controller/Dlna
parent154ddbd963c7d8093a0810048dc1798db6eb0a6e (diff)
3.2.25.10
Diffstat (limited to 'MediaBrowser.Controller/Dlna')
-rw-r--r--MediaBrowser.Controller/Dlna/IEventManager.cs11
1 files changed, 2 insertions, 9 deletions
diff --git a/MediaBrowser.Controller/Dlna/IEventManager.cs b/MediaBrowser.Controller/Dlna/IEventManager.cs
index 54e2a02dd..8c91bd889 100644
--- a/MediaBrowser.Controller/Dlna/IEventManager.cs
+++ b/MediaBrowser.Controller/Dlna/IEventManager.cs
@@ -12,18 +12,11 @@ namespace MediaBrowser.Controller.Dlna
/// <summary>
/// Renews the event subscription.
/// </summary>
- /// <param name="subscriptionId">The subscription identifier.</param>
- /// <param name="timeoutSeconds">The timeout seconds.</param>
- /// <returns>EventSubscriptionResponse.</returns>
- EventSubscriptionResponse RenewEventSubscription(string subscriptionId, int? timeoutSeconds);
+ EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string requestedTimeoutString);
/// <summary>
/// Creates the event subscription.
/// </summary>
- /// <param name="notificationType">Type of the notification.</param>
- /// <param name="timeoutSeconds">The timeout seconds.</param>
- /// <param name="callbackUrl">The callback URL.</param>
- /// <returns>EventSubscriptionResponse.</returns>
- EventSubscriptionResponse CreateEventSubscription(string notificationType, int? timeoutSeconds, string callbackUrl);
+ EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
}
}