jellyfin/Emby.Dlna/IDlnaEventManager.cs

35 lines
1.5 KiB
C#
Raw Normal View History

2022-11-08 21:13:57 +01:00
#nullable disable
#pragma warning disable CS1591
2018-09-12 19:26:21 +02:00
namespace Emby.Dlna
2014-04-21 18:02:30 +02:00
{
public interface IDlnaEventManager
2014-04-21 18:02:30 +02:00
{
/// <summary>
/// Cancels the event subscription.
/// </summary>
/// <param name="subscriptionId">The subscription identifier.</param>
2020-08-20 21:04:57 +02:00
/// <returns>The response.</returns>
2014-04-21 18:02:30 +02:00
EventSubscriptionResponse CancelEventSubscription(string subscriptionId);
/// <summary>
/// Renews the event subscription.
/// </summary>
2020-08-20 21:04:57 +02:00
/// <param name="subscriptionId">The subscription identifier.</param>
/// <param name="notificationType">The notification type.</param>
/// <param name="requestedTimeoutString">The requested timeout as a string.</param>
2020-08-20 21:04:57 +02:00
/// <param name="callbackUrl">The callback url.</param>
/// <returns>The response.</returns>
2017-10-04 20:51:26 +02:00
EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl);
2014-04-21 18:02:30 +02:00
/// <summary>
/// Creates the event subscription.
/// </summary>
2020-08-20 21:04:57 +02:00
/// <param name="notificationType">The notification type.</param>
/// <param name="requestedTimeoutString">The requested timeout as a string.</param>
2020-08-20 21:04:57 +02:00
/// <param name="callbackUrl">The callback url.</param>
/// <returns>The response.</returns>
2017-07-20 22:37:13 +02:00
EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
2014-04-21 18:02:30 +02:00
}
}