using System.Collections.Generic;
namespace MediaBrowser.Controller.Dlna
{
    public interface IUpnpService
    {
        /// 
        /// Gets the content directory XML.
        /// 
        /// The headers.
        /// System.String.
        string GetServiceXml(IDictionary headers);
        
        /// 
        /// Processes the control request.
        /// 
        /// The request.
        /// ControlResponse.
        ControlResponse ProcessControlRequest(ControlRequest request);
    }
}