2020-01-22 20:00:07 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2016-10-29 22:22:20 +00:00
|
|
|
using System.Xml.Linq;
|
2016-10-29 22:34:54 +00:00
|
|
|
using Emby.Dlna.Ssdp;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
namespace Emby.Dlna.PlayTo
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
2020-08-20 19:04:57 +00:00
|
|
|
public class UpnpContainer : UBaseObject
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
2020-08-20 19:04:57 +00:00
|
|
|
public static UBaseObject Create(XElement container)
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
if (container == null)
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(container));
|
2016-10-29 22:22:20 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 19:04:57 +00:00
|
|
|
return new UBaseObject
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
2020-08-20 19:04:57 +00: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 22:22:20 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|