You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
748 B
28 lines
748 B
2 years ago
|
using System.Xml;
|
||
|
using System.Xml.Linq;
|
||
|
|
||
|
namespace Zncy.CloudCar.WeChat.Service.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);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|