Ich erhalte die folgende Fehlermeldung :-
System.InvalidOperationException: Der XmlReader st bei System.Xml.Linq.XContainer.ReadContentFrom(XmlReader r, LoadOptions o) bei System.Xml.Linq.XDocument.Load(XmlReader reader, LoadOptions options)
im folgenden Code. Kann mir jemand sagen, was ich hier falsch mache?
static XDocument GetContentAsXDocument(string xmlData)
{
XmlDocument xmlDocument = new XmlDocument();
if (!string.IsNullOrEmpty(xmlData))
{
xmlDocument.LoadXml(xmlData);
return xmlDocument.ToXDocument();
}
else
{
return new XDocument();
}
}
/// <summary>
/// Converts XMLDocument to XDocument
/// </summary>
/// <param name="xmlDocument"></param>
/// <returns></returns>
public static XDocument ToXDocument( this XmlDocument xmlDocument )
{
using( var nodeReader = new XmlNodeReader( xmlDocument ) )
{
nodeReader.MoveToContent();
return XDocument.Load(
nodeReader,
(LoadOptions.PreserveWhitespace |
LoadOptions.SetBaseUri |
LoadOptions.SetLineInfo));
}
}