jellyfin/Emby.Dlna/IUpnpService.cs

23 lines
574 B
C#
Raw Normal View History

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