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.
92 lines
2.8 KiB
92 lines
2.8 KiB
using System.Collections.Generic;
|
|
using Emby.Dlna.Common;
|
|
using Emby.Dlna.Service;
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
namespace Emby.Dlna.MediaReceiverRegistrar
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="MediaReceiverRegistrarXmlBuilder" />.
|
|
/// See https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-drmnd/5d37515e-7a63-4709-8258-8fd4e0ed4482.
|
|
/// </summary>
|
|
public static class MediaReceiverRegistrarXmlBuilder
|
|
{
|
|
/// <summary>
|
|
/// Retrieves an XML description of the X_MS_MediaReceiverRegistrar.
|
|
/// </summary>
|
|
/// <returns>An XML representation of this service.</returns>
|
|
public static string GetXml()
|
|
{
|
|
return new ServiceXmlBuilder().GetXml(ServiceActionListBuilder.GetActions(), GetStateVariables());
|
|
}
|
|
|
|
/// <summary>
|
|
/// The a list of all the state variables for this invocation.
|
|
/// </summary>
|
|
/// <returns>The <see cref="IEnumerable{StateVariable}"/>.</returns>
|
|
private static IEnumerable<StateVariable> GetStateVariables()
|
|
{
|
|
var list = new List<StateVariable>
|
|
{
|
|
new StateVariable
|
|
{
|
|
Name = "AuthorizationGrantedUpdateID",
|
|
DataType = "ui4",
|
|
SendsEvents = true
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "A_ARG_TYPE_DeviceID",
|
|
DataType = "string",
|
|
SendsEvents = false
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "AuthorizationDeniedUpdateID",
|
|
DataType = "ui4",
|
|
SendsEvents = true
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "ValidationSucceededUpdateID",
|
|
DataType = "ui4",
|
|
SendsEvents = true
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "A_ARG_TYPE_RegistrationRespMsg",
|
|
DataType = "bin.base64",
|
|
SendsEvents = false
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "A_ARG_TYPE_RegistrationReqMsg",
|
|
DataType = "bin.base64",
|
|
SendsEvents = false
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "ValidationRevokedUpdateID",
|
|
DataType = "ui4",
|
|
SendsEvents = true
|
|
},
|
|
|
|
new StateVariable
|
|
{
|
|
Name = "A_ARG_TYPE_Result",
|
|
DataType = "int",
|
|
SendsEvents = false
|
|
}
|
|
};
|
|
|
|
return list;
|
|
}
|
|
}
|
|
}
|