jellyfin/Emby.Dlna/Ssdp/Extensions.cs

32 lines
763 B
C#
Raw Normal View History

using System.Xml.Linq;
2016-10-29 18:22:20 -04:00
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Ssdp
2016-10-29 18:22:20 -04:00
{
public static class Extensions
{
public static string GetValue(this XElement container, XName name)
{
var node = container.Element(name);
return node == null ? null : node.Value;
}
public static string GetAttributeValue(this XElement container, XName name)
{
var node = container.Attribute(name);
return node == null ? null : node.Value;
}
public static string GetDescendantValue(this XElement container, XName name)
{
2017-08-24 15:52:19 -04:00
foreach (var node in container.Descendants(name))
{
return node.Value;
}
2016-10-29 18:22:20 -04:00
2017-08-24 15:52:19 -04:00
return null;
2016-10-29 18:22:20 -04:00
}
}
}