aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Service/BaseService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/Service/BaseService.cs')
-rw-r--r--Emby.Dlna/Service/BaseService.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/Emby.Dlna/Service/BaseService.cs b/Emby.Dlna/Service/BaseService.cs
deleted file mode 100644
index 67e7bf6a6..000000000
--- a/Emby.Dlna/Service/BaseService.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-#nullable disable
-#pragma warning disable CS1591
-
-using System.Net.Http;
-using Emby.Dlna.Eventing;
-using Microsoft.Extensions.Logging;
-
-namespace Emby.Dlna.Service
-{
- public class BaseService : IDlnaEventManager
- {
- protected BaseService(ILogger<BaseService> logger, IHttpClientFactory httpClientFactory)
- {
- Logger = logger;
- EventManager = new DlnaEventManager(logger, httpClientFactory);
- }
-
- protected IDlnaEventManager EventManager { get; }
-
- protected ILogger Logger { get; }
-
- public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
- {
- return EventManager.CancelEventSubscription(subscriptionId);
- }
-
- public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl)
- {
- return EventManager.RenewEventSubscription(subscriptionId, notificationType, requestedTimeoutString, callbackUrl);
- }
-
- public EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl)
- {
- return EventManager.CreateEventSubscription(notificationType, requestedTimeoutString, callbackUrl);
- }
- }
-}