IUpnpService.cs 625 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. namespace Emby.Dlna
  3. {
  4. public interface IUpnpService
  5. {
  6. /// <summary>
  7. /// Gets the content directory XML.
  8. /// </summary>
  9. /// <param name="headers">The headers.</param>
  10. /// <returns>System.String.</returns>
  11. string GetServiceXml(IDictionary<string, string> headers);
  12. /// <summary>
  13. /// Processes the control request.
  14. /// </summary>
  15. /// <param name="request">The request.</param>
  16. /// <returns>ControlResponse.</returns>
  17. ControlResponse ProcessControlRequest(ControlRequest request);
  18. }
  19. }