2014-03-13 15:08:02 -04: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 00:14:07 -04:00
|
|
|
|
IEnumerable<DeviceProfile> GetProfiles();
|
2014-03-13 15:08:02 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the default profile.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>DlnaProfile.</returns>
|
2014-03-15 00:14:07 -04:00
|
|
|
|
DeviceProfile GetDefaultProfile();
|
2014-03-13 15:08:02 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the profile.
|
|
|
|
|
|
/// </summary>
|
2014-03-17 10:48:16 -04:00
|
|
|
|
/// <param name="deviceInfo">The device information.</param>
|
|
|
|
|
|
/// <returns>DeviceProfile.</returns>
|
|
|
|
|
|
DeviceProfile GetProfile(DeviceIdentification deviceInfo);
|
2014-03-13 15:08:02 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|