82112b6788
* Improve response writer * Add analyzers * Error on warnings in release mode * Disable doc warnings
25 lines
854 B
C#
25 lines
854 B
C#
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
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>
|
|
EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl);
|
|
|
|
/// <summary>
|
|
/// Creates the event subscription.
|
|
/// </summary>
|
|
EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
|
|
}
|
|
}
|