gpt4 book ai didi

c# - Sharepoint:SPweb.Groups.GetByName(groupName) 抛出异常

转载 作者:太空宇宙 更新时间:2023-11-03 20:05:27 25 4
gpt4 key购买 nike

我正在尝试以编程方式(使用 .Net)创建一个新的 SharePoint 组,为此我使用以下 C# 代码

                //greate group with no users:

web.SiteGroups.Add(groupName, groupOwner, null, description);
//Parameters are defined earlier in the code such as:
// string groupName
// SPUser groupOwner
// string description

web.Update();
SPGroup newGroup = web.Groups.GetByName(groupName);

创建工作正常,但当我尝试访问该组时抛出异常,提示“找不到组”。找不到该组的原因是什么?我该如何解决(我需要访问该组以获取更多代码)?如果我在人员和群组下查看 SharePoint,群组就在那里。

感谢任何帮助,谢谢。

最佳答案

试试这个:SPGroup oGroup = web.SiteGroups[groupName];

关于c# - Sharepoint:SPweb.Groups.GetByName(groupName) 抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23802499/

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