You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
655 B
22 lines
655 B
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.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);
|
|
}
|
|
}
|