aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/IUpnpService.cs
blob: ae90e95c7963d0ee435e0a3951d41c1d03111cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Emby.Dlna
{
    public interface IUpnpService
    {
        /// <summary>
        /// Gets the content directory XML.
        /// </summary>
        /// <returns>System.String.</returns>
        string GetServiceXml();

        /// <summary>
        /// Processes the control request.
        /// </summary>
        /// <param name="request">The request.</param>
        /// <returns>ControlResponse.</returns>
        ControlResponse ProcessControlRequest(ControlRequest request);
    }
}