jellyfin/Emby.Dlna/IEventManager.cs

24 lines
823 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-09-12 13:26:21 -04:00
namespace Emby.Dlna
2014-04-21 12:02:30 -04:00
{
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>
2017-10-04 14:51:26 -04:00
EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl);
2014-04-21 12:02:30 -04:00
/// <summary>
/// Creates the event subscription.
/// </summary>
2017-07-20 16:37:13 -04:00
EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
2014-04-21 12:02:30 -04:00
}
}