前端之家收集整理的这篇文章主要介绍了
c# – 如何获取SharePoint中所有用户的列表,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何通过
代码获取SharePoint中特定组中的所有
用户的列表?
using (SPWeb oWebsite = SPContext.Current.Site.OpenWeb("Website_URL"))
{
SPGroupCollection collGroups = oWebsite.Groups;
foreach (SPGroup oGroup in collGroups)
{
foreach(SPUser oUser in oGroup.Users)
{
Response.Write(oUser.Name);
}
}
}
原文链接:https://www.f2er.com/csharp/97592.html