2014-03-13 19:08:02 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
|
|
|
{
|
|
|
|
|
public interface IDlnaManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the dlna profiles.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IEnumerable{DlnaProfile}.</returns>
|
2014-03-15 04:14:07 +00:00
|
|
|
|
IEnumerable<DeviceProfile> GetProfiles();
|
2014-03-13 19:08:02 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the default profile.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>DlnaProfile.</returns>
|
2014-03-15 04:14:07 +00:00
|
|
|
|
DeviceProfile GetDefaultProfile();
|
2014-03-13 19:08:02 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the profile.
|
|
|
|
|
/// </summary>
|
2014-03-17 14:48:16 +00:00
|
|
|
|
/// <param name="deviceInfo">The device information.</param>
|
|
|
|
|
/// <returns>DeviceProfile.</returns>
|
|
|
|
|
DeviceProfile GetProfile(DeviceIdentification deviceInfo);
|
2014-03-13 19:08:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|