IDlnaManager.cs 744 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Dlna
  3. {
  4. public interface IDlnaManager
  5. {
  6. /// <summary>
  7. /// Gets the dlna profiles.
  8. /// </summary>
  9. /// <returns>IEnumerable{DlnaProfile}.</returns>
  10. IEnumerable<DeviceProfile> GetProfiles();
  11. /// <summary>
  12. /// Gets the default profile.
  13. /// </summary>
  14. /// <returns>DlnaProfile.</returns>
  15. DeviceProfile GetDefaultProfile();
  16. /// <summary>
  17. /// Gets the profile.
  18. /// </summary>
  19. /// <param name="deviceInfo">The device information.</param>
  20. /// <returns>DeviceProfile.</returns>
  21. DeviceProfile GetProfile(DeviceIdentification deviceInfo);
  22. }
  23. }