aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/IUpnpService.cs
blob: caae87ba360c1f27f7fd02e3e5d58b639ea1a538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System.Collections.Generic;

namespace Emby.Dlna
{
    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);
    }
}