如何检索 SharePoint 列表项的目标安全组?

发布于 2024-12-09 14:02:06 字数 271 浏览 0 评论 0原文

我正在用 C# 开发一个 Web 部件,它正在读取 SharePoint 列表的内容。 我可以检索所需的所有字段中的值,但“目标受众”字段(使用 AD 安全组)除外。我尝试了各种方法来访问此例如

string myItem = Convert.ToString(ListItem.properties["Audience"])

但我得到的只是返回 null。当我在 SharePoint 中编辑项目时,我可以看到目标组已存储在该项目的燃料字段中。

如何使用代码检索该字段的内容?

I am developing a web part in C# which is reading the contents of a SharePoint list.
I can retrieve the values in all the fields I need, except the Target Audience field (which uses AD security groups). I have tried various ways to access this e.g.

string myItem = Convert.ToString(ListItem.properties["Audience"])

but all I get is null returned. I can see that a target group has been stored in the fueield for thwe item when I edit the item in SharePoint.

How can I retrieve the contents of this field using code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦亿 2024-12-16 14:02:06

尝试不要使用 ListItemProperties,而是使用字段本身。

在“目标受众”字段中,您有一些存储为字符串的 GUID,您需要像这样检索这些 GUID:

//use the FieldId enumeration for system fields
string audienceID = item[FieldId.AudienceTargeting] as string;
string newID = audienceID.Remove(36); //retrieve just the first guid
Guid audienceGuid = new Guid(newID);

AudienceManager audienceManager= new AudienceManager(SPContext.Current.Site);
Audience audience = audienceManager.GetAudience(guid);

之后您可能需要查看 audience.GetMembership()

Try not using the Properties of the ListItem, but the fields themselves.

In the "Target Audience" field you have some GUIDs stored as strings, these you need to retrieve like so:

//use the FieldId enumeration for system fields
string audienceID = item[FieldId.AudienceTargeting] as string;
string newID = audienceID.Remove(36); //retrieve just the first guid
Guid audienceGuid = new Guid(newID);

AudienceManager audienceManager= new AudienceManager(SPContext.Current.Site);
Audience audience = audienceManager.GetAudience(guid);

afterwards you might want to look at audience.GetMembership().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文