jellyfin/Emby.Dlna/IUpnpService.cs

23 lines
574 B
C#
Raw Normal View History

#pragma warning disable CS1591
2020-01-21 11:59:41 -05:00
using System.Threading.Tasks;
2018-09-12 13:26:21 -04:00
namespace Emby.Dlna
2014-05-20 20:56:24 -04:00
{
public interface IUpnpService
{
/// <summary>
/// Gets the content directory XML.
/// </summary>
/// <returns>System.String.</returns>
string GetServiceXml();
2019-01-07 18:27:46 -05:00
2014-05-20 20:56:24 -04:00
/// <summary>
/// Processes the control request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>ControlResponse.</returns>
2020-01-21 11:59:41 -05:00
Task<ControlResponse> ProcessControlRequestAsync(ControlRequest request);
2014-05-20 20:56:24 -04:00
}
}