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);
リスト アイテムの contenttype を更新するために、内部 xml はどのように見えるべきですか?