mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			769 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			769 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Controller.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 requestedTimeoutString);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Creates the event subscription.
 | 
						|
        /// </summary>
 | 
						|
        EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
 | 
						|
    }
 | 
						|
}
 |