0
似乎Sharepoint列表服務的UpdateListItems是正確的函數,但是用什麼正確的xml來實際更新特定文檔的內容類型?所以,如果我有這個開始:使用Sharepoint 2010 Web服務修改文檔的ContentType
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看起來像更新列表項的內容類型?