博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharePoint Users&AllUsers&SiteUsers
阅读量:6259 次
发布时间:2019-06-22

本文共 1163 字,大约阅读时间需要 3 分钟。

注意: 本文讨论基于SharePoint 2010, 其次文章比较罗嗦, 大神直接可以PASS.

序言

大家都知道SPWeb中有三个属性可以获取相关用户集合:

SPWeb.Users Gets the collection of user objects that are explicitly assigned permissions in the website.
SPWeb.AllUsers Gets the collection of user objects that represents all users who are either members of the site or who have browsed to the site as authenticated members of a domain group in the site.
SPWeb.SiteUsers Gets the collection of all users that belong to the site collection.

看文字描述大家都能理解, 但是具体系统中哪些用户或者用户组存储在里面可能还有点迷糊. 下面我们通过几个实验来分别看看里面是怎么样的.

第一回

当我们新建一个网站集的时候, 一般会将Domain中的Users组直接赋予网站集只读的权限(如下图所示).

这时候我们来看看这三个属性中的值是怎么样的:

此时, SPWeb.Users中没有数据, SPWeb.AllUsers和SPWeb.SiteUsers中的数量是一致的.

第二回

这时候当多个用户去访问该站点的时候, 又会怎么样呢?

此时, 跟"第一回"的情况类似, 访问网站集的用户都出现在SPWeb.AllUsers和SPWeb.SiteUsers中, 而SPWeb.Users中还是没有数据.

第三回

当对某个用户自定义权限或者新建一个SharePoint自定义用户组并且赋予某个用户权限的时候, 又会怎么样呢?

这时候我们发现"SPWeb.Users"的属性值已经发生了变化, 同样该用户出现在SPWeb.AllUsers和SPWeb.SiteUsers中.

SPWeb.EnsureUser

当通过EnsureUser方法将某个用户加到网站集的时候:

这时候我们会发现SPWeb.SiteUsers相比SPWeb.AllUsers多了一个用户.

结束

SPWeb.SiteUsers中存储的数据是最多的, 其次是SPWeb.AllUsers, 最后是SPWeb.Users. 大家觉得呢?

enjoy SharePoint

转载于:https://www.cnblogs.com/jingnansu/p/4955334.html

你可能感兴趣的文章
html5学习笔记——html保留标签(二)
查看>>
二分图判定--黑白染色
查看>>
ios 处理 touch 事件时偶尔的击穿现象
查看>>
第105天:Ajax 客户端与服务器基本知识
查看>>
LeetCode70——爬楼梯
查看>>
windows phone 中的TextBlock的一些特性(TextWrapping,TextWrapping)
查看>>
引用类型起的锅
查看>>
java String 类特点
查看>>
LeetCode 300. Longest Increasing Subsequence / 354. Russian Doll Envelopes
查看>>
Loj #2192. 「SHOI2014」概率充电器
查看>>
<x:set/>标签
查看>>
制作首页的显示列表。
查看>>
php 构造函数 __construct()
查看>>
打印多层圣诞树
查看>>
asp.net core ABP模板本地化设置
查看>>
Web应用程序简介
查看>>
[NOI2005]维修数列
查看>>
JSP -- EL表达式
查看>>
生活就是好好经历,无问西东----三月份总结
查看>>
《SQL 进阶教程》 case:练习题1-1-3 用 ORDER BY 指定顺序进行排序
查看>>