当我正在获取字节数据时,我正在尝试转换为如下所示的 XELement
using (Stream streamResult = new MemoryStream(byteArray))
{
XElement xElement = XElement.Load(streamResult); // exception thrown here
}
以下是异常详细信息:
System.Xml.dll PageRequest::PostProcess: System.NotSupportedException: NotSupportedException at System.Xml.XmlTextReaderImpl.ParseText(Int32& startPos, Int32& endPos, Int32& outOrChars) 在 System.Xml .XmlTextReaderImpl.FinishPartialValue() 在 System.Xml.XmlTextReaderImpl.get_Value() 在 System.Xml.Linq.XContainer.ReadContentFrom(XmlReader r) 在 System.Xml.Linq.XContainer.ReadContentFrom(XmlReader r, LoadOptions o) 在 System。 Xml.Linq.XElement.ReadElementFrom(XmlReader r, LoadOptions o) 在 System.Xml.Linq.XElement..ctor(XmlReader r, LoadOptions o)
在 System.Xml.Linq.XElement.Load(XmlReader reader, LoadOptions options) 在System.Xml.Linq.XElement.Load(流流,LoadOptions 选项)
XML有问题吗?