From 0d5bbfda321f64ad78b5b74e7bdfbbbb8b64c7af Mon Sep 17 00:00:00 2001 From: Patrick Barron Date: Wed, 6 Dec 2023 18:06:42 -0500 Subject: Remove unused DLNA models (#10685) * Remove unused DLNA models * Remove IDlnaManager --- MediaBrowser.Controller/Dlna/IDlnaManager.cs | 80 ---------------------------- 1 file changed, 80 deletions(-) delete mode 100644 MediaBrowser.Controller/Dlna/IDlnaManager.cs (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/Dlna/IDlnaManager.cs b/MediaBrowser.Controller/Dlna/IDlnaManager.cs deleted file mode 100644 index 06da5ea09..000000000 --- a/MediaBrowser.Controller/Dlna/IDlnaManager.cs +++ /dev/null @@ -1,80 +0,0 @@ -#pragma warning disable CS1591 - -using System.Collections.Generic; -using MediaBrowser.Controller.Drawing; -using MediaBrowser.Model.Dlna; -using Microsoft.AspNetCore.Http; - -namespace MediaBrowser.Controller.Dlna -{ - public interface IDlnaManager - { - /// - /// Gets the profile infos. - /// - /// IEnumerable{DeviceProfileInfo}. - IEnumerable GetProfileInfos(); - - /// - /// Gets the profile. - /// - /// The headers. - /// DeviceProfile. - DeviceProfile? GetProfile(IHeaderDictionary headers); - - /// - /// Gets the default profile. - /// - /// DeviceProfile. - DeviceProfile GetDefaultProfile(); - - /// - /// Creates the profile. - /// - /// The profile. - void CreateProfile(DeviceProfile profile); - - /// - /// Updates the profile. - /// - /// The profile id. - /// The profile. - void UpdateProfile(string profileId, DeviceProfile profile); - - /// - /// Deletes the profile. - /// - /// The identifier. - void DeleteProfile(string id); - - /// - /// Gets the profile. - /// - /// The identifier. - /// DeviceProfile. - DeviceProfile? GetProfile(string id); - - /// - /// Gets the profile. - /// - /// The device information. - /// DeviceProfile. - DeviceProfile? GetProfile(DeviceIdentification deviceInfo); - - /// - /// Gets the server description XML. - /// - /// The headers. - /// The server uu identifier. - /// The server address. - /// System.String. - string GetServerDescriptionXml(IHeaderDictionary headers, string serverUuId, string serverAddress); - - /// - /// Gets the icon. - /// - /// The filename. - /// DlnaIconResponse. - ImageStream? GetIcon(string filename); - } -} -- cgit v1.2.3