Wer LINQ to XML nutzen möchte, benötigt zur Abfrage ein Objekt vom Typ XDocument.
Mit dieser Methode kann das "alte" XMLDocument im XDocument umgewandelt werden.
Benötigte Namespaces:
using System.Xml;
using System.Xml.Linq;
/// <summary>
/// Converts the XML document to X document.
/// </summary>
/// <param name="xmlDocument">The XML document.</param>
/// <returns></returns>
private XDocument ConvertXMLDocumentToXDocument(XmlDocument xmlDocument)
{
return XDocument.Parse(xmlDocument.OuterXml);
}
Kommentare zum Snippet