using System.Collections.Generic; namespace Emby.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); } }