mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			456 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			456 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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;
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |