gpt4 book ai didi

Sharepoint 客户端对象模型 : How to get all the fields in a list

转载 作者:行者123 更新时间:2023-12-04 12:07:07 28 4
gpt4 key购买 nike

我有一个名为“讨论列表”的列表。我想从列表中取出所有列。

我想知道如何做 SharePoint 客户端对象模型。

最佳答案

好的。找到了解决办法。在这里使用我按标题获取的列表,但可以使用任何方法:

// Get your ClientContext for your site  in 'clientContext'

SP.List oList = clientContext.Web.Lists.GetByTitle("List Title Here");
SP.FieldCollection fieldColl = oList.Fields;
clientContext.Load(fieldColl);
clientContext.ExecuteQuery();

foreach (SP.Field fieldTemp in fieldColl)
{
MessageBox.Show(fieldTemp.InternalName.ToString()); //I used MessageBox to show, but you can do whatever you like with it here.
}

关于Sharepoint 客户端对象模型 : How to get all the fields in a list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12892430/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com