#pragma warning disable CS1591
using System.Threading.Tasks;
namespace Emby.Dlna
{
public interface IUpnpService
{
///
/// Gets the content directory XML.
///
/// System.String.
string GetServiceXml();
///
/// Processes the control request.
///
/// The request.
/// ControlResponse.
Task ProcessControlRequestAsync(ControlRequest request);
}
}