- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
出于某种原因,GetAuthorizationGroups()
似乎需要大约 20 秒才能返回组。我正在使用这段代码:
UserPrincipal user;
// This takes 20 seconds
user.GetAuthorizationGroups().OfType<GroupPrincipal>().ToList();
任何人都有任何想法,或者它只是一个缓慢的 AD 域? (例如,在 Outlook 中查看组不需要那么长时间)
最佳答案
尝试在进行此调用之前对 UserPrincipal
对象执行一些操作以尝试删除初始化时间。如果那个新操作也需要很长时间,然后查看我的 other answers至 similar questions .
关于c# - UserPrincipal.GetAuthorizationGroups() 很慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24041146/
PrincipalContext context = new PrincipalContext(ContextType.Domain, "ipofmachine", "DC=xyz,DC=org",
出于某种原因,GetAuthorizationGroups() 似乎需要大约 20 秒才能返回组。我正在使用这段代码: UserPrincipal user; // This takes 20 sec
我在网络应用程序中使用 UserPrincipal 类的 GetAuthorizationGroups 方法时遇到问题。 使用以下代码,我收到“尝试检索授权组时,发生错误 (5)” Principal
我正在尝试通过 GetAuthorizationGroups 查找群组,它的工作原理是我可以返回一个 IEnumerable,但是当我尝试读取它们时,我返回的大多数项目都会抛出异常: System.R
我正在使用 ASP.Net 4.0 MVC 查询事件目录。我正在尝试获取用户组成员身份的列表并遍历它们。我有一个奇怪的问题。要获取我正在使用的组: PrincipalSearchResult g
这个问题在这里已经有了答案: UserPrincipals.GetAuthorizationGroups An error (1301) occurred while enumerating the
我在 ASP.Net MVC 网站中运行以下代码: using (var ctx = new PrincipalContext(ContextType.Domain, DOMAIN)) usi
研究: Similar Issue with workaround, but not actual solution to existing problem Similar issue pointin
我是一名优秀的程序员,十分优秀!