jellyfin/Emby.Dlna/IUpnpService.cs

22 lines
636 B
C#
Raw Normal View History

2014-05-21 00:56:24 +00:00
using System.Collections.Generic;
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>
/// <param name="headers">The headers.</param>
/// <returns>System.String.</returns>
string GetServiceXml(IDictionary<string, string> headers);
/// <summary>
/// Processes the control request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>ControlResponse.</returns>
ControlResponse ProcessControlRequest(ControlRequest request);
}
}