jellyfin/Emby.Dlna/PlayTo/UpnpContainer.cs

27 lines
781 B
C#
Raw Normal View History

using System;
2016-10-30 00:22:20 +02:00
using System.Xml.Linq;
2016-10-30 00:34:54 +02:00
using Emby.Dlna.Ssdp;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.PlayTo
2016-10-30 00:22:20 +02:00
{
public class UpnpContainer : uBaseObject
{
public static uBaseObject Create(XElement container)
{
if (container == null)
{
throw new ArgumentNullException(nameof(container));
2016-10-30 00:22:20 +02:00
}
return new uBaseObject
{
Id = container.GetAttributeValue(uPnpNamespaces.Id),
ParentId = container.GetAttributeValue(uPnpNamespaces.ParentId),
Title = container.GetValue(uPnpNamespaces.title),
IconUrl = container.GetValue(uPnpNamespaces.Artwork),
UpnpClass = container.GetValue(uPnpNamespaces.uClass)
};
}
}
}