jellyfin/Emby.Dlna/IUpnpService.cs

23 lines
574 B
C#
Raw Normal View History

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