IDlnaManager.cs 983 B

1234567891011121314151617181920212223242526272829
  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="friendlyName">Name of the friendly.</param>
  20. /// <param name="modelName">Name of the model.</param>
  21. /// <param name="modelNumber">The model number.</param>
  22. /// <param name="manufacturer">The manufacturer.</param>
  23. /// <returns>DlnaProfile.</</returns>
  24. DeviceProfile GetProfile(string friendlyName, string modelName, string modelNumber, string manufacturer);
  25. }
  26. }