jellyfin/Emby.Dlna/Ssdp/Extensions.cs

34 lines
836 B
C#
Raw Normal View History

2016-10-30 00:22:20 +02:00
using System;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Xml.Linq;
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Ssdp
2016-10-30 00:22:20 +02: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)
{
var node = container.Descendants(name)
.FirstOrDefault();
return node == null ? null : node.Value;
}
}
}