2020-01-22 13:00:07 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2016-10-29 15:22:20 -07:00
|
|
|
using System.Xml.Linq;
|
2016-10-29 15:34:54 -07:00
|
|
|
using Emby.Dlna.Ssdp;
|
2016-10-29 15:22:20 -07:00
|
|
|
|
2016-10-29 15:34:54 -07:00
|
|
|
namespace Emby.Dlna.PlayTo
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
2020-08-20 12:04:57 -07:00
|
|
|
public class UpnpContainer : UBaseObject
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
2020-08-20 12:04:57 -07:00
|
|
|
public static UBaseObject Create(XElement container)
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
|
|
|
if (container == null)
|
|
|
|
{
|
2019-01-06 13:50:43 -07:00
|
|
|
throw new ArgumentNullException(nameof(container));
|
2016-10-29 15:22:20 -07:00
|
|
|
}
|
|
|
|
|
2020-08-20 12:04:57 -07:00
|
|
|
return new UBaseObject
|
2016-10-29 15:22:20 -07:00
|
|
|
{
|
2020-08-20 12:04:57 -07:00
|
|
|
Id = container.GetAttributeValue(UPnpNamespaces.Id),
|
|
|
|
ParentId = container.GetAttributeValue(UPnpNamespaces.ParentId),
|
|
|
|
Title = container.GetValue(UPnpNamespaces.Title),
|
|
|
|
IconUrl = container.GetValue(UPnpNamespaces.Artwork),
|
|
|
|
UpnpClass = container.GetValue(UPnpNamespaces.Class)
|
2016-10-29 15:22:20 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|