pulling all metadata for multiple episodes

This commit is contained in:
Luis Miguel Almánzar
2013-06-18 14:54:06 -04:00
parent 6de9e2491f
commit c5edf57b0c
3 changed files with 61 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
using System.Xml;
using System.Xml.Linq;
namespace MediaBrowser.Providers.Extensions
{
public static class XDocumentExtensions
{
public static XmlDocument ToXmlDocument(this XElement xDocument)
{
var xmlDocument = new XmlDocument();
using (var xmlReader = xDocument.CreateReader())
{
xmlDocument.Load(xmlReader);
}
return xmlDocument;
}
}
}