You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
735 B
C#
27 lines
735 B
C#
using System.Xml;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Ds.Module.WeChat.Utilities
|
|
{
|
|
public static class DocumentExtensions
|
|
{
|
|
public static XmlDocument ToXmlDocument(this XDocument xDocument)
|
|
{
|
|
var xmlDocument = new XmlDocument();
|
|
using (var xmlReader = xDocument.CreateReader())
|
|
{
|
|
xmlDocument.Load(xmlReader);
|
|
}
|
|
return xmlDocument;
|
|
}
|
|
|
|
public static XDocument ToXDocument(this XmlDocument xmlDocument)
|
|
{
|
|
using (var nodeReader = new XmlNodeReader(xmlDocument))
|
|
{
|
|
nodeReader.MoveToContent();
|
|
return XDocument.Load(nodeReader);
|
|
}
|
|
}
|
|
}
|
|
} |