Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 c# 在 SharePoint 任务列表中创建任务。
我可以像这样使用 SharePoint APISPList.Items.Add()吗?创建后我不会监视任务更改。或者我应该考虑使用 Outlook API 吗?
SPList.Items.Add()
你第一次就做对了。
使用 SharePoint 对象模型。它非常容易使用并且相当直观。您唯一需要注意的是填充字段(首先检查它们是否存在,因为 SharePoint 是可自定义的,并且有人可以删除或重命名字段),并且当您创建 SPWeb 和 SPSite 对象时,请务必使用 dispose()他们之后。