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.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);
}
}