似乎 Sharepoint List Service 的UpdateListItems是正确使用的功能,但正确的 xml 用于实际更新特定文档的内容类型是什么?所以,如果我有这个开始:
XmlDocument xmlDoc = new XmlDocument();
XmlElement updates = xmlDoc.CreateElement("Batch");
updates.SetAttribute("OnError", "Continue");
updates.SetAttribute("ListVersion", "0");
updates.SetAttribute("ViewName", "");
updates.InnerXml = "<Method ID="1" Cmd="Update"><what should go here?/></Method";
ListService.UpdateListItems(repositoryId, updates);
更新列表项的内容类型的内部 xml 应该是什么样子?