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