0
我試圖將umbraco節點內容的一部分作爲xml文檔。我需要從後面的代碼更新這部分代碼。 我用這樣的代碼:umbraco將內容部分作爲xml
Document doc = new Document(1214);
XmlDocument xmlDoc = new XmlDocument();
umbraco.cms.businesslogic.property.Property items = doc.getProperty("fundItems");
XmlNode fundsNode = items.ToXml(xmlDoc);
的問題是,我得到一個錯誤:在根級別 數據是無效的。第1行,位置1.
不確定我是否正確使用ToXml方法?似乎沒有其他解決方案,但我無法在互聯網上找到適用於此方法或解決方案的任何適當文檔。
感謝